summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-12-11 00:52:12 +0000
committerMike Frysinger <vapier@gentoo.org>2006-12-11 00:52:12 +0000
commit257678943161eba72051cbbe6c3cbefd63924cd8 (patch)
tree44f90e850e302f3fa5e17f7fcdf17c986b4350b9 /Makefile.in
parent08c9e9e978882a46433e8b07699e3a9d6254e821 (diff)
kill off the need for fix_includes.sh by utilizing KERNEL_SOURCE directly
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index f6d3d24f1..020cd32fc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -56,10 +56,6 @@ HEADERS_BITS_COMMON := $(filter-out $(HEADERS_BITS_ARCH),$(HEADERS_BITS_COMMON))
headers: include/bits/uClibc_config.h
$(Q)$(MAKE) headers-y
$(Q)\
- $(SHELL) $(top_srcdir)extra/scripts/fix_includes.sh \
- -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) \
- $(header_extra_args)
- $(Q)\
set -e; \
if [ -f libc/sysdeps/linux/$(TARGET_ARCH)/fpu_control.h ] ; then \
$(LN) -fs ../libc/sysdeps/linux/$(TARGET_ARCH)/fpu_control.h include/ ; \
@@ -94,7 +90,7 @@ headers: include/bits/uClibc_config.h
cd $(top_builddir); \
tmp=`mktemp include/bits/sysnum.h.XXXXXX 2>/dev/null`; \
[ -z "$$tmp" ] && tmp='include/bits/sysnum.h.new'; \
- top_builddir=. CC="$(CC) $(CPU_CFLAGS)" $(SHELL) extra/scripts/gen_bits_syscall_h.sh > $$tmp; \
+ KERNEL_SOURCE="${KERNEL_SOURCE}" top_builddir=. CC="$(CC) $(CPU_CFLAGS)" $(SHELL) extra/scripts/gen_bits_syscall_h.sh > $$tmp; \
if cmp include/bits/sysnum.h $$tmp >/dev/null 2>&1; then \
$(RM) $$tmp; \
else \