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 78492155d3
commit e3800bf32b
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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