Removing shell specific extensions and call of scripts/config and scripts/clean, thanks to Tzafrir Cohen <tzafrir.cohen@xorcom.com>.

This commit is contained in:
Daniel Baumann 2009-01-31 03:38:58 +01:00
parent 0c9e2bf57c
commit 2e9433d58d
2 changed files with 4 additions and 4 deletions

View File

@ -10,9 +10,9 @@
set -e set -e
# Read meta config # Read meta config
if [ "${1}" != "autoconfig" ] && [ -e scripts/clean.sh ] if [ "${1}" != "autoconfig" ] && [ -x scripts/clean ]
then then
sh scripts/clean.sh ${@} ./scripts/clean ${@}
else else
shift shift
fi fi

View File

@ -10,9 +10,9 @@
set -e set -e
# Read meta config # Read meta config
if [ "${1}" != "autoconfig" ] && [ -e scripts/config.sh ] if [ "${1}" != "autoconfig" ] && [ -x scripts/config ]
then then
sh scripts/config.sh ${@} ./scripts/config ${@}
else else
shift shift
fi fi