diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2016-11-03 09:53:50 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2016-12-14 10:54:28 +0100 |
commit | 846221cfb8f64c613b7635c94e0c02549a666c14 (patch) | |
tree | ca22dfd6f341c5b3de6e96d84b75bbe478dd344b /arch/s390 | |
parent | d06505b2a95efba25dc635b64a481e3197e9369a (diff) | |
download | linux-stable-846221cfb8f64c613b7635c94e0c02549a666c14.tar.gz linux-stable-846221cfb8f64c613b7635c94e0c02549a666c14.tar.bz2 linux-stable-846221cfb8f64c613b7635c94e0c02549a666c14.zip |
Remove references to dead make variable LINUX_INCLUDE
Commit 4fd06960f120 ("Use the new x86 setup code for i386") introduced a
reference to the make variable LINUX_INCLUDE. That reference got moved
around a bit and copied twice and now there are three references to it.
There has never been a definition of that variable. (Presumably that is
because it started out as a mistyped reference to LINUXINCLUDE.) So this
reference has always been an empty string. Let's remove it before it
spreads any further.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/boot/compressed/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/boot/compressed/Makefile b/arch/s390/boot/compressed/Makefile index 0daa070d6c9d..6bd2c9022be3 100644 --- a/arch/s390/boot/compressed/Makefile +++ b/arch/s390/boot/compressed/Makefile @@ -10,7 +10,7 @@ targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.lz4 targets += misc.o piggy.o sizes.h head.o -KBUILD_CFLAGS := -m64 -D__KERNEL__ $(LINUX_INCLUDE) -O2 +KBUILD_CFLAGS := -m64 -D__KERNEL__ -O2 KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING KBUILD_CFLAGS += $(cflags-y) -fno-delete-null-pointer-checks -msoft-float KBUILD_CFLAGS += $(call cc-option,-mpacked-stack) |