diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-03 23:29:49 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-03 23:29:49 -0700 |
commit | 62069f9946e82f0d8a57b181b594f4b08b22efd1 (patch) | |
tree | 0fc8a58865f71d49f30d0ce1a07e0895d32b9747 | |
parent | 2bac150dd160bf177672a30ae7db7045c91b1a20 (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 |