Module: ngircd.git Branch: master Commit: cd48b8128ea514a0fd87033571dbba103e1c41d6 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=cd48b...
Author: Alexander Barton alex@barton.de Date: Tue Nov 13 23:21:09 2012 +0100
platformtest.sh: Only generate configure script when missing
---
contrib/platformtest.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/platformtest.sh b/contrib/platformtest.sh index cc42434..cfa1ecc 100755 --- a/contrib/platformtest.sh +++ b/contrib/platformtest.sh @@ -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
ngircd-commits@lists.barton.de