From 24ac8dc06fd7535549e22d162beb58d6592d6aea Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 14 Mar 2017 11:27:10 +0000 Subject: Fixes for weird systems --- patch-for-solaris | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'patch-for-solaris') diff --git a/patch-for-solaris b/patch-for-solaris index fbefc32..4ca46ef 100755 --- a/patch-for-solaris +++ b/patch-for-solaris @@ -1,7 +1,11 @@ #!/usr/xpg4/bin/sh patchit () { - echo '#!/usr/xpg4/bin/sh' > $1.tmp + if head -n 1 $1 | grep -qF -- -e ; then + echo '#!/usr/xpg4/bin/sh -e' > $1.tmp + else + echo '#!/usr/xpg4/bin/sh' > $1.tmp + fi tail -n +2 $1 >> $1.tmp mv -f $1.tmp $1 chmod 0755 $1 @@ -14,6 +18,10 @@ mv -f configure.tmp configure patchit ./configure patchit ./tools/install.sh patchit ./tools/gen-deps.sh +patchit ./tools/gen-types.sh +patchit ./tools/gen-types-internal.sh +patchit ./tools/gen-bits.sh +patchit ./tools/gen-bits-internal.sh echo 'SHELL := /usr/xpg4/bin/sh' > Makefile.tmp echo >> Makefile.tmp -- cgit v1.2.3