]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: Launch cygmagic with bash, not sh
authorMark Geisert <mark@maxrnd.com>
Mon, 7 Dec 2020 06:17:15 +0000 (22:17 -0800)
committerCorinna Vinschen <corinna@vinschen.de>
Mon, 7 Dec 2020 09:37:32 +0000 (10:37 +0100)
On some systems /bin/sh is not /bin/bash and cygmagic has bash-isms in
it.  So even though cygmagic has a /bin/bash shebang, it also needs to be
launched with bash from within Makefile.in.

winsup/cygwin/Makefile.in

index b15c746cf22534d27a59d28cc38060801c404cc4..a840f2b8318dd400a013ac28e78433ebff9999c3 100644 (file)
@@ -683,10 +683,10 @@ globals.h: mkglobals_h globals.cc
 ${DLL_OFILES} ${LIBCOS}: globals.h $(srcdir)/$(TLSOFFSETS_H)
 
 shared_info_magic.h: cygmagic shared_info.h
-       /bin/sh $(word 1,$^) $@ "${COMPILE.cc} -E -x c++" $(word 2,$^) SHARED_MAGIC 'class shared_info' USER_MAGIC 'class user_info'
+       /bin/bash $(word 1,$^) $@ "${COMPILE.cc} -E -x c++" $(word 2,$^) SHARED_MAGIC 'class shared_info' USER_MAGIC 'class user_info'
 
 child_info_magic.h: cygmagic child_info.h
-       /bin/sh $(word 1,$^) $@ "${COMPILE.cc} -E -x c++" $(word 2,$^) CHILD_INFO_MAGIC 'class child_info'
+       /bin/bash $(word 1,$^) $@ "${COMPILE.cc} -E -x c++" $(word 2,$^) CHILD_INFO_MAGIC 'class child_info'
 
 dcrt0.o sigproc.o: child_info_magic.h
 
This page took 0.033156 seconds and 5 git commands to generate.