diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-04-04 16:20:34 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-04-09 00:13:45 +0900 |
commit | c8bddf4feaabd67a7453d795672fa37c4e9e98cb (patch) | |
tree | 06ee316d6bfa6d6ce5bb53d35cd45a3462e9ad86 /scripts/Makefile | |
parent | 01a6126b5f7efdf75480a2b970377f5724cb885a (diff) | |
download | linux-next-c8bddf4feaabd67a7453d795672fa37c4e9e98cb.tar.gz |
kbuild: remove -I$(srctree)/tools/include from scripts/Makefile
I do not like to add an extra include path for every tool with no
good reason. This should be specified per file.
This line was added by commit 6520fe5564ac ("x86, realmode: 16-bit
real-mode code support for relocs tool"), which did not touch
anything else in scripts/. I see no reason to add this.
Also, remove the comment about kallsyms because we do not have any
for the rest of programs.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/Makefile')
-rw-r--r-- | scripts/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 5e75802b1a44..95ecf970c74c 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -2,10 +2,6 @@ ### # scripts contains sources for various helper programs used throughout # the kernel for the build process. -# --------------------------------------------------------------------------- -# kallsyms: Find all symbols in vmlinux - -HOST_EXTRACFLAGS += -I$(srctree)/tools/include always-$(CONFIG_BUILD_BIN2C) += bin2c always-$(CONFIG_KALLSYMS) += kallsyms |