blob: a5f3c14b1eb516bfe3764d29ed0b728af0f62c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/xpg4/bin/sh
patchit () {
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
}
# Solaris doesn't understand POSIX.1-2008 either.
sed -e 's/XOPEN_SOURCE=700/XOPEN_SOURCE=600/' < configure > configure.tmp
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-sysdepsh.sh
echo 'SHELL := /usr/xpg4/bin/sh' > Makefile.tmp
echo >> Makefile.tmp
cat Makefile >> Makefile.tmp
mv -f Makefile.tmp Makefile
|