platformtest.sh: Only generate configure script when missing

This commit is contained in:
Alexander Barton 2012-11-13 23:21:09 +01:00
parent 301d4915bc
commit cd48b8128e
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ if [ $? -ne 0 ]; then
cd ..
fi
echo "$NAME: Checking for \"./autogen.sh\" script ..."
if [ -r ./autogen.sh ]; then
echo "$NAME: Checking for \"./configure\" script ..."
if [ ! -e ./configure ]; then
echo "$NAME: Running \"./autogen.sh\" ..."
[ -n "$VERBOSE" ] && ./autogen.sh || ./autogen.sh >/dev/null
fi