svn commit: trunk/uClibc

vapier at uclibc.org vapier at uclibc.org
Fri Jan 6 01:02:04 UTC 2006


Author: vapier
Date: 2006-01-05 17:02:02 -0800 (Thu, 05 Jan 2006)
New Revision: 13112

Log:
Jan-Benedict Glaw: run shell scripts through $(SHELL) so people
can force it to something other than /bin/sh


Modified:
   trunk/uClibc/Makefile.in


Changeset:
Modified: trunk/uClibc/Makefile.in
===================================================================
--- trunk/uClibc/Makefile.in	2006-01-06 00:59:37 UTC (rev 13111)
+++ trunk/uClibc/Makefile.in	2006-01-06 01:02:02 UTC (rev 13112)
@@ -52,7 +52,7 @@
 headers: include/bits/uClibc_config.h
 	$(MAKE) headers-y
 	@$(SHELL_SET_X); \
-	$(top_srcdir)extra/scripts/fix_includes.sh \
+	$(SHELL) $(top_srcdir)extra/scripts/fix_includes.sh \
 		-k $(KERNEL_SOURCE) -t $(TARGET_ARCH) \
 		$(header_extra_args)
 	if [ -f libc/sysdeps/linux/$(TARGET_ARCH)/fpu_control.h ] ; then \
@@ -86,7 +86,7 @@
 	@cd $(top_builddir); \
 	set -e; \
 	$(SHELL_SET_X); \
-	top_builddir=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
+	top_builddir=. CC="$(CC)" $(SHELL) extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
 	if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
 		$(RM) include/bits/sysnum.h.new; \
 	else \




More information about the uClibc-cvs mailing list