From: J. Alexander Treuman Date: Sun, 21 Sep 2008 19:36:09 +0000 (+0200) Subject: autogen: don't run ./configure if $NOCONFIGURE is set X-Git-Tag: v0.12_alpha1~211 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=20d3e7ace00bc91fa89cd1b709ff85bd0cb0e4ec;p=ncmpc.git autogen: don't run ./configure if $NOCONFIGURE is set --- diff --git a/autogen.sh b/autogen.sh index 1a114ea..4c02b8a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -25,5 +25,7 @@ automake --add-missing # configure -echo "./configure $*" -./configure $* +if test x$NOCONFIGURE = x; then + echo "./configure $*" + ./configure $* +fi