allow for setting of env var to prevent running ./configure like the older autogen scripts allowed

SVN revision: 14386
This commit is contained in:
Mike Frysinger 2005-04-26 22:55:56 +00:00
parent d4b9c20f9f
commit bdda78ae81
1 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
rm -rf autom4te.cache
rm -f aclocal.m4
rm -f aclocal.m4 ltmain.sh
touch README
@ -11,5 +11,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