diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 21:01:43 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 21:01:43 -0700 |
commit | d03b6fc7acb5f08de3a55d165f82d0253b9f4219 (patch) | |
tree | fa27c9f350a3c4065c2f07e088189d52733301b9 | |
parent | 766bb4ceaa163d44849542fb7b9040b3c8b54759 (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 |