diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 22:27:58 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 22:27:58 -0700 |
commit | bec84d9dd1b6d5f3fcee4cccd704759c5c18544a (patch) | |
tree | 19b89e2020e7d9ed3c44671d515795dc2bde278d | |
parent | d236a8cdd4b8c3b8dd49c04d2d9d6dcbd4e6bb53 (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 |