From d407ce86fa7a1402eb6d12895a5e97a6ffd3478a Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 31 May 2014 23:36:28 -0700 Subject: autogen.sh: Honor NOCONFIGURE=1 See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Alan Coopersmith --- autogen.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 231605e..a0fdb77 100755 --- a/autogen.sh +++ b/autogen.sh @@ -12,5 +12,6 @@ cd $ORIGDIR || exit $? git config --local --get format.subjectPrefix >/dev/null 2>&1 || git config --local format.subjectPrefix "PATCH app/xmore" -$srcdir/configure "$@" - +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi -- cgit v1.2.3