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-02 21:11:09 -0700 |
commit | 05af81b19c9cf4cec67aca2c2936076bf1a9f76d (patch) | |
tree | 3724eef951aa65f03f1bb09c0e98ec7220d2244f | |
parent | 4d5bbe13082ed3827dcb839abf9027aa23eeb98f (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 |