diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-31 21:39:32 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-04 18:11:40 -0700 |
commit | 39b0d5b336e4a810d7f69bf24f7cd44e8fa0a295 (patch) | |
tree | f3c3f13c8e2f99391c0c2fbdeeecc7ea41506738 | |
parent | 352d086cece2691acd6e4ee771deb12541d61d31 (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
@@ -9,4 +9,6 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure "$@" +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |