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 17:42:04 -0700 |
commit | c2f4dc50cd71cfbc4c4b5828654d30c09e83cf57 (patch) | |
tree | 89a2943e046de5b2d9fe98b06bc537c08d5dfdf5 | |
parent | 3c6e2c3cfa438468514d1dff1e0736800200a168 (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 |