Correcting quoting of auto calls, thanks to Andreas Loibl <andreas@andreas-loibl.de>.
This commit is contained in:
parent
bde76a795e
commit
044d1989c0
|
@ -24,7 +24,7 @@ fi
|
|||
if [ "${1}" != "noauto" ] && [ -x auto/build ]
|
||||
then
|
||||
Echo_message "Executing auto/build script."
|
||||
./auto/build ${@}
|
||||
./auto/build "${@}"
|
||||
exit ${?}
|
||||
fi
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue