diff options
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index 0ea691d31..7704fc11e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -31,6 +31,8 @@ export AUTOCONF # might be used by aclocal and/or automake export AUTOM4TE # ditto : ${PERL=perl} +BOOTSTRAP_SHELL=${BOOTSTRAP_SHELL-/bin/sh} + # Variables to substitute. VERSION=`sed -ne '/AC_INIT/s/^[^[]*\[[^[]*\[\([^]]*\)\].*$/\1/p' configure.ac` PACKAGE=automake @@ -40,15 +42,6 @@ PERL_THREADS=0 # rule of our Makefile. RELEASE_YEAR=2012 -# Override SHELL. This is required on DJGPP so that Perl's system() -# uses bash, not COMMAND.COM which doesn't quote arguments properly. -# It's not used otherwise. -if test -n "$DJDIR"; then - BOOTSTRAP_SHELL=/dev/env/DJDIR/bin/bash.exe -else - BOOTSTRAP_SHELL=/bin/sh -fi - # Read the rule for calculating APIVERSION and execute it. apiver_cmd=`sed -ne 's/\[\[/[/g;s/\]\]/]/g;/^APIVERSION=/p' configure.ac` eval "$apiver_cmd" @@ -71,8 +64,8 @@ if test -d automake-$APIVERSION; then find automake-$APIVERSION -exec chmod u+wx '{}' ';' fi rm -rf automake-$APIVERSION -# Can't use "ln -s lib automake-$APIVERSION", that would create a -# lib.exe stub under DJGPP 2.03. +# Can't use "ln -s lib automake-$APIVERSION", that might not work +# properly on MinGW/MSYS. mkdir automake-$APIVERSION cp -rf lib/* automake-$APIVERSION |