Avoid running helpers twice when using auto (Closes: #584884).
This commit is contained in:
parent
9f865fce29
commit
ee8f3c73b9
|
@ -25,6 +25,7 @@ if [ "${1}" != "noauto" ] && [ -x auto/build ]
|
|||
then
|
||||
Echo_message "Executing auto/build script."
|
||||
./auto/build ${@}
|
||||
exit ${?}
|
||||
fi
|
||||
|
||||
if [ "${1}" = "noauto" ]
|
||||
|
|
|
@ -18,6 +18,7 @@ if [ "${1}" != "noauto" ] && [ -x auto/clean ]
|
|||
then
|
||||
Echo_message "Executing auto/clean script."
|
||||
./auto/clean ${@}
|
||||
exit ${?}
|
||||
fi
|
||||
|
||||
if [ "${1}" = "noauto" ]
|
||||
|
|
|
@ -18,6 +18,7 @@ if [ "${1}" != "noauto" ] && [ -x auto/config ]
|
|||
then
|
||||
Echo_message "Executing auto/config script."
|
||||
./auto/config ${@}
|
||||
exit ${?}
|
||||
fi
|
||||
|
||||
if [ "${1}" = "noauto" ]
|
||||
|
|
Loading…
Reference in New Issue