diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-03 23:31:43 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-03 23:31:43 -0700 |
commit | 32b051128bbff7f3ab593dd70728818879c06b49 (patch) | |
tree | 9f4d43c54c153e7e9a8a5440c722709d902063ba | |
parent | a786fb26f813a73f21b34af3f0feb713f657a74e (diff) |
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-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 "$@" - +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |