From 5f85b67b1828e6fe12b928f7eb6d8608bd00de9c Mon Sep 17 00:00:00 2001 From: Gwenole Beauchesne Date: Fri, 9 Dec 2011 10:44:52 +0100 Subject: [PATCH] autogen: don't configure if NO_CONFIGURE variable is set. --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 284547f..9e15ad9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 -- 2.7.4