From fa04207d0d10a3cbbbdab6653f689a2f330344c2 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 284547f0..9e15ad9a 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 -- GitLab