s390: do not pass $(LINUXINCLUDE) to gen_opcode_table.c
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Fri, 17 May 2019 07:54:24 +0000 (16:54 +0900)
committerHeiko Carstens <heiko.carstens@de.ibm.com>
Tue, 4 Jun 2019 13:03:22 +0000 (15:03 +0200)
I guess HOSTCFLAGS_gen_opcode_table.o was blindly copied from
HOSTCFLAGS_gen_facilities.o

The reason of adding $(LINUXINCLUDE) to HOSTCFLAGS_gen_facilities.o
is because gen_facilities.c references some CONFIG options. (Kbuild
does not cater to this for host tools automatically.)

On the other hand, gen_opcode_table.c does not reference CONFIG
options at all. So, there is no good reason to pass $(LINUXINCLUDE).

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
arch/s390/tools/Makefile

index 2342b84b338636bd671784e75f19ecca7dcfddfd..4ff6a21245223fa70efc75a2b0e395c95211a0f4 100644 (file)
@@ -15,7 +15,7 @@ hostprogs-y               += gen_facilities
 hostprogs-y                += gen_opcode_table
 
 HOSTCFLAGS_gen_facilities.o += -Wall $(LINUXINCLUDE)
-HOSTCFLAGS_gen_opcode_table.o += -Wall $(LINUXINCLUDE)
+HOSTCFLAGS_gen_opcode_table.o += -Wall
 
 # Ensure output directory exists
 _dummy := $(shell [ -d '$(kapi)' ] || mkdir -p '$(kapi)')