aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2006-06-04 16:47:35 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2006-06-04 16:47:35 +0000
commitc6d110f975ddbdd3763439e97ac0307967d08adf (patch)
treee6254f5e28c6e1b18efcb156da2df49dc59aa3a7 /autogen.sh
parent5cbfdf3517d0e9711da972989151c29c5dfadad8 (diff)
Don't run configure from autogen.sh if NOCONFIGURE is non-empty.
git-svn-id: https://svn.musicpd.org/mpd/trunk@4246 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 49125530..ea03f1e1 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -138,4 +138,6 @@ autoconf
cd ../..
cd $olddir
-$srcdir/configure "$@" && echo
+if test x$NOCONFIGURE = x; then
+ $srcdir/configure "$@" && echo
+fi