commit 24ac8dc06fd7535549e22d162beb58d6592d6aea parent 33dfbbeaec4a49e110f51f5d088015f1a8fb9075 Author: Laurent Bercot <ska-skaware@skarnet.org> Date: Tue, 14 Mar 2017 11:27:10 +0000 Fixes for weird systems Diffstat:
M | patch-for-solaris | | | 10 | +++++++++- |
M | tools/gen-types.sh | | | 2 | +- |
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git 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 diff --git a/tools/gen-types.sh b/tools/gen-types.sh @@ -4,7 +4,7 @@ sysdeps="$1" shift getbits() { - expr 8 '*' `grep -F sizeof$2: < "$1" | cut -f2 -d' ')` + expr 8 '*' `grep -F sizeof$2: < "$1" | cut -f2 -d' '` } cat < src/headers/types-header