Avoid running helpers twice when using auto (Closes: #584884).

This commit is contained in:
Daniel Baumann 2010-09-13 21:20:54 +02:00
parent 9f865fce29
commit ee8f3c73b9
3 changed files with 3 additions and 0 deletions

View File

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

View File

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

View File

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