From b1e5d48f8146c008dc5a1dc33a22443d6bb352db Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 26 Apr 2005 22:55:56 +0000 Subject: [PATCH] allow for setting of env var to prevent running ./configure like the older autogen scripts allowed SVN revision: 14386 --- autogen.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 4e9360b96..b34aba5e8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -23,5 +23,6 @@ xgettext \ -o enlightenment.pot \ `find . -name "*.[ch]" -print` -### If you want this, uncomment it. -./configure "$@" +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi