diff options
author | Colin Walters <walters@verbum.org> | 2013-03-21 17:44:10 -0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2013-03-21 23:01:34 +0100 |
commit | f3579abb3a8df2e3e635e6419ec2ca04c403921b (patch) | |
tree | 4674c14c1d53dc7546775363875d3342b4dc2f16 /autogen.sh | |
parent | df6bc6269ebd3144663cbdb8457fbe71d9202b6a (diff) |
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -160,5 +160,7 @@ do_cmd $AUTOCONF cd "$ORIGDIR" || exit $? rm -f config.cache -do_cmd $srcdir/configure --enable-maintainer-mode ${1+"$@"} || exit 1 +if test -z "$NOCONFIGURE"; then + do_cmd $srcdir/configure --enable-maintainer-mode ${1+"$@"} || exit 1 +fi |