autogen: don't configure if NO_CONFIGURE variable is set.

This commit is contained in:
Gwenole Beauchesne 2011-12-09 10:44:52 +01:00
parent 809e087cca
commit 5f85b67b18

View file

@ -36,4 +36,6 @@ else
ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" autoreconf -v --install || exit $?
fi
./configure "$@" && echo "Now type 'make' to compile $PROJECT."
if test -z "$NO_CONFIGURE"; then
./configure "$@" && echo "Now type 'make' to compile $PROJECT."
fi