autogen.sh: Honor NOCONFIGURE environment variable

See http://people.gnome.org/~walters/docs/build-api.txt
This commit is contained in:
Colin Walters 2012-01-05 10:08:03 -05:00
parent 5bd3c06182
commit 81809d527c

View File

@ -41,7 +41,7 @@ test -f entities.c || {
exit 1 exit 1
} }
if test -z "$*"; then if test -z "$NOCONFIGURE" && test -z "$*"; then
echo "I am going to run ./configure with no arguments - if you wish " echo "I am going to run ./configure with no arguments - if you wish "
echo "to pass any to it, please specify them on the $0 command line." echo "to pass any to it, please specify them on the $0 command line."
fi fi
@ -64,7 +64,9 @@ if test x$OBJ_DIR != x; then
cd "$OBJ_DIR" cd "$OBJ_DIR"
fi fi
$srcdir/configure "$@" if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
echo echo
echo "Now type 'make' to compile libxml." echo "Now type 'make' to compile libxml."
fi