diff options
author | Colin Walters <walters@verbum.org> | 2012-01-18 17:52:33 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2012-01-18 17:53:00 -0500 |
commit | e8d6b0ad09ebdcb81b2229937a982ff06c9f4394 (patch) | |
tree | b48494508d4652b6f8bc1162a717982f27820401 | |
parent | 649671b6eeaeb16d4e965fc1a053809503a21cc1 (diff) |
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -8,4 +8,8 @@ else gtkdocize --flavour no-tmpl || exit 1 fi -ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" autoreconf -v -i && ./configure $@ +ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" autoreconf -v -i + +if test -z "$NOCONFIGURE"; then + exec ./configure "$@" +fi |