From 19c61f61f4ce33bf791668b73b68ec1230e0777d Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 31 May 2014 21:39:32 -0700 Subject: autogen.sh: Honor NOCONFIGURE=1 See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Alan Coopersmith --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 80ae530..21bd15c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,5 +9,7 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure "$@" +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi -- cgit v1.2.3