allow for setting of env var to prevent running ./configure like the older autogen...
authorvapier <vapier>
Tue, 26 Apr 2005 22:55:56 +0000 (22:55 +0000)
committervapier <vapier@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 26 Apr 2005 22:55:56 +0000 (22:55 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/libs/emotion@14386 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

autogen.sh

index 9d8816d..72e4772 100755 (executable)
@@ -9,5 +9,6 @@ echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \
 && echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \
 && echo "Running automake..."; automake --add-missing --copy --gnu
 
-###  If you want this, uncomment it.
-./configure "$@"
+if [ -z "$NOCONFIGURE" ]; then
+       ./configure "$@"
+fi