aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2003-02-19 04:17:28 -0600
committerKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2003-02-19 04:17:28 -0600
commit46bd1da672d66ccd8a639d3c1f8a166048cca608 (patch)
treea85bc3a930ba54ada76ec20e2bd7e36f48568ef3 /Makefile
parent8e19dec4605cfd6ab8c3c92794e0eebda597648d (diff)
downloadhistory-46bd1da672d66ccd8a639d3c1f8a166048cca608.tar.gz
kbuild: [PATCH] put genksyms in scripts dir
This puts genksyms into scripts/genksyms/. genksyms used to be maintained externally, though the only possible user was the kernel build. Moving it into the kernel sources makes it easier to keep it uptodate, like for example updating it to generate linker scripts directly instead of postprocessing the generated header file fragments with sed, as we do currently. Also, genksyms does not handle __typeof__, which needs to be fixed since some of the exported symbol in the kernel are defined using __typeof__. (Rusty Russell/me)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 902656ac8cf0db..b2749cdd92d962 100644
--- a/Makefile
+++ b/Makefile
@@ -159,7 +159,7 @@ STRIP = $(CROSS_COMPILE)strip
OBJCOPY = $(CROSS_COMPILE)objcopy
OBJDUMP = $(CROSS_COMPILE)objdump
AWK = awk
-GENKSYMS = /sbin/genksyms
+GENKSYMS = scripts/genksyms/genksyms
DEPMOD = /sbin/depmod
KALLSYMS = scripts/kallsyms
PERL = perl