Printing message when auto scripts are used to make debug logs more understandable.

This commit is contained in:
Daniel Baumann 2010-04-18 14:40:09 +02:00
parent 4aebed6033
commit d1612f05af
3 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,7 @@ fi
# Read meta config
if [ "${1}" != "noauto" ] && [ -x auto/build ]
then
Echo_message "Executing auto/build script."
./auto/build ${@}
fi

View File

@ -12,6 +12,7 @@ set -e
# Read meta config
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
then
Echo_message "Executing auto/clean script."
./auto/clean ${@}
fi

View File

@ -12,6 +12,7 @@ set -e
# Read meta config
if [ "${1}" != "noauto" ] && [ -x auto/config ]
then
Echo_message "Executing auto/config script."
./auto/config ${@}
fi