diff options
author | Colin Walters <walters@verbum.org> | 2013-11-07 20:35:32 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2013-11-08 08:28:17 -0500 |
commit | 984cfd0c90870310e09d55784c3aaa723f59f527 (patch) | |
tree | 1a0a9a9e8084f648a008dca80d3b2cba74c0e840 | |
parent | 6c3d341467acd10eafc1462ee94c3efd3a4788ef (diff) |
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -9,5 +9,7 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure --enable-maintainer-mode "$@" +if test -z "$NOCONFIGURE"; then + exec $srcdir/configure --enable-maintainer-mode "$@" +fi |