diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-31 21:39:32 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-07-24 14:06:29 -0700 |
commit | 50574404bd1fcdb61a68f30a0dd0d15b38ee36a3 (patch) | |
tree | cfd7ef0ed0c29ca72264fb3ffc5c4e36db872ffc | |
parent | 3de8874f5db31a9fe107f99c46c8548a05efaef1 (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 | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -24,4 +24,6 @@ fi autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure "$@" +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |