diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 22:12:53 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 22:12:53 -0700 |
commit | 67382af06d38fdfd7f08c2bae30a7d5f1bb3fe89 (patch) | |
tree | 1bd75bfadc418470df1cef6a6d011dd398f9a6db /autogen.sh | |
parent | a135ec20812ae83c8afc0d7ce6d8f3f15c4aeafe (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>
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 "$@" - +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |