Correcting quoting of auto calls, thanks to Andreas Loibl <andreas@andreas-loibl.de>.

This commit is contained in:
Daniel Baumann 2010-11-22 20:30:09 +01:00
parent bde76a795e
commit 044d1989c0
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ fi
if [ "${1}" != "noauto" ] && [ -x auto/build ]
then
Echo_message "Executing auto/build script."
./auto/build ${@}
./auto/build "${@}"
exit ${?}
fi

View File

@ -17,7 +17,7 @@ set -e
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
then
Echo_message "Executing auto/clean script."
./auto/clean ${@}
./auto/clean "${@}"
exit ${?}
fi

View File

@ -17,7 +17,7 @@ set -e
if [ "${1}" != "noauto" ] && [ -x auto/config ]
then
Echo_message "Executing auto/config script."
./auto/config ${@}
./auto/config "${@}"
exit ${?}
fi