diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-06-15 11:45:46 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-07-18 15:31:35 -0400 |
commit | 58ab5e0c2c40ec48e682179e8f2e4cda2ece201b (patch) | |
tree | e3346feaefd272946190306b96da8215b74b50c0 /arch/alpha | |
parent | 3308b28569ba3327419658edd194a967e3fd51e2 (diff) |
Kbuild: arch: look for generated headers in obtree
There are very few files that need add an -I$(obj) gcc for the preprocessor
or the assembler. For C files, we add always these for both the objtree and
srctree, but for the other ones we require the Makefile to add them, and
Kbuild then adds it for both trees.
As a preparation for changing the meaning of the -I$(obj) directive to
only refer to the srctree, this changes the two instances in arch/x86 to use
an explictit $(objtree) prefix where needed, otherwise we won't find the
headers any more, as reported by the kbuild 0day builder.
arch/x86/realmode/rm/realmode.lds.S:75:20: fatal error: pasyms.h: No such file or directory
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/boot/Makefile b/arch/alpha/boot/Makefile index 8399bd0e68e8..0cbe4c59d3ce 100644 --- a/arch/alpha/boot/Makefile +++ b/arch/alpha/boot/Makefile | |||
@@ -15,7 +15,7 @@ targets := vmlinux.gz vmlinux \ | |||
15 | OBJSTRIP := $(obj)/tools/objstrip | 15 | OBJSTRIP := $(obj)/tools/objstrip |
16 | 16 | ||
17 | HOSTCFLAGS := -Wall -I$(objtree)/usr/include | 17 | HOSTCFLAGS := -Wall -I$(objtree)/usr/include |
18 | BOOTCFLAGS += -I$(obj) -I$(srctree)/$(obj) | 18 | BOOTCFLAGS += -I$(objtree)/$(obj) -I$(srctree)/$(obj) |
19 | 19 | ||
20 | # SRM bootable image. Copy to offset 512 of a partition. | 20 | # SRM bootable image. Copy to offset 512 of a partition. |
21 | $(obj)/bootimage: $(addprefix $(obj)/tools/,mkbb lxboot bootlx) $(obj)/vmlinux.nh | 21 | $(obj)/bootimage: $(addprefix $(obj)/tools/,mkbb lxboot bootlx) $(obj)/vmlinux.nh |