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
This commit is contained in:
J. Alexander Treuman 2006-06-04 16:47:35 +00:00
parent 5cbfdf3517
commit c6d110f975

View File

@ -138,4 +138,6 @@ autoconf
cd ../..
cd $olddir
$srcdir/configure "$@" && echo
if test x$NOCONFIGURE = x; then
$srcdir/configure "$@" && echo
fi