diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2016-11-03 10:47:48 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-11-07 07:30:01 +0100 |
commit | 0acba3f91823a5e53a54af5dc31fc774b0e64e99 (patch) | |
tree | f60704f75fa423ad45edff4661045a6a96fc77b9 /arch/x86/boot | |
parent | bc33b0ca11e3df467777a4fa7639ba488c9d4911 (diff) | |
download | op-kernel-dev-0acba3f91823a5e53a54af5dc31fc774b0e64e99.zip op-kernel-dev-0acba3f91823a5e53a54af5dc31fc774b0e64e99.tar.gz |
x86/boot/build: Remove always empty $(USERINCLUDE)
Commmit b6eea87fc685:
("x86, boot: Explicitly include autoconf.h for hostprogs")
correctly noted:
[...] that because $(USERINCLUDE) isn't exported by
the top-level Makefile it's actually empty in arch/x86/boot/Makefile.
So let's do the sane thing and remove the reference to that make variable.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Reviewed-by: Matt Fleming <matt@codeblueprint.co.uk>
Cc: David Howells <dhowells@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1478166468-9760-1-git-send-email-pebolle@tiscali.nl
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/boot')
-rw-r--r-- | arch/x86/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile index 12ea8f8..0d810fb 100644 --- a/arch/x86/boot/Makefile +++ b/arch/x86/boot/Makefile @@ -65,7 +65,7 @@ clean-files += cpustr.h # --------------------------------------------------------------------------- -KBUILD_CFLAGS := $(USERINCLUDE) $(REALMODE_CFLAGS) -D_SETUP +KBUILD_CFLAGS := $(REALMODE_CFLAGS) -D_SETUP KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__ GCOV_PROFILE := n UBSAN_SANITIZE := n |