diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-03-27 20:43:35 +0900 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-04-02 16:42:08 +0200 |
commit | 7aacad53aeb57b7ff52399f56eb6d7d4010e72e9 (patch) | |
tree | d698b3eef4d545a011dc71fbf2fa70b65d8e9cbf /arch/ia64 | |
parent | 8a58e1628ce4416490fb00e958b867fb5b9b1f90 (diff) | |
download | linux-7aacad53aeb57b7ff52399f56eb6d7d4010e72e9.tar.bz2 |
kbuild: use relative path to include Makefile
The "MAKEFLAGS += --include-dir=$(srctree)" line in the top Makefile
allows us to do this.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/Makefile b/arch/ia64/kernel/Makefile index 20678a9ed11a..47e8aff03591 100644 --- a/arch/ia64/kernel/Makefile +++ b/arch/ia64/kernel/Makefile @@ -51,7 +51,7 @@ obj-$(CONFIG_BINFMT_ELF) += elfcore.o CFLAGS_traps.o += -mfixed-range=f2-f5,f16-f31 # The gate DSO image is built using a special linker script. -include $(srctree)/arch/ia64/kernel/Makefile.gate +include arch/ia64/kernel/Makefile.gate # tell compiled for native CPPFLAGS_gate.lds += -D__IA64_GATE_PARAVIRTUALIZED_NATIVE |