diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-06 06:07:11 +0300 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-10 18:05:09 +0300 |
commit | 75dd47472b92c320304436c9e38638bc04ae7a4a (patch) | |
tree | 83262f99fcdf5416f04cc329fd3d39a7da5dd2c8 /arch/arc/Makefile | |
parent | b3b3eb9dadfcb6c706f5fa97bc841d4e069af3de (diff) | |
download | linux-75dd47472b92c320304436c9e38638bc04ae7a4a.tar.xz |
kbuild: remove src and obj from the top Makefile
Replace $(src) and $(obj) with $(srctree) and $(objtree), respectively.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arc/Makefile')
-rw-r--r-- | arch/arc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/Makefile b/arch/arc/Makefile index e2b991f75bc5..00cff258c090 100644 --- a/arch/arc/Makefile +++ b/arch/arc/Makefile @@ -18,7 +18,7 @@ ifdef CONFIG_ARC_CURR_IN_REG # any kernel headers, and missing the r25 global register # Can't do unconditionally because of recursive include issues # due to <linux/thread_info.h> -LINUXINCLUDE += -include ${src}/arch/arc/include/asm/current.h +LINUXINCLUDE += -include $(srctree)/arch/arc/include/asm/current.h endif cflags-y += -fsection-anchors |