diff options
author | Colin Walters <walters@verbum.org> | 2013-01-16 13:02:57 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2013-01-16 13:02:57 -0500 |
commit | ed1b90216e59e6b3ac6ac5fd2faca8e056c76caa (patch) | |
tree | f4f57c517d52cd8efc5d84d7a43f63294659015a /autogen.sh | |
parent | 0522fab51eec0aa3e623aa17c5b7ea3aa6dfec45 (diff) |
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,5 +9,6 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure --enable-maintainer-mode "$@" - +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |