diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2006-06-04 16:47:35 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2006-06-04 16:47:35 +0000 |
commit | c6d110f975ddbdd3763439e97ac0307967d08adf (patch) | |
tree | e6254f5e28c6e1b18efcb156da2df49dc59aa3a7 /autogen.sh | |
parent | 5cbfdf3517d0e9711da972989151c29c5dfadad8 (diff) | |
download | mpd-c6d110f975ddbdd3763439e97ac0307967d08adf.tar.gz mpd-c6d110f975ddbdd3763439e97ac0307967d08adf.tar.xz mpd-c6d110f975ddbdd3763439e97ac0307967d08adf.zip |
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-x | autogen.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 491255306..ea03f1e13 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 |