diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-31 23:41:50 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-31 23:41:50 -0700 |
commit | 156921246c26f5e12790d52b8b9f395a56f61c87 (patch) | |
tree | f33de0160d22354640744417ff86949811a84648 /autogen.sh | |
parent | c624c9c29ed4af8f941108368786ddb5f0d55ba6 (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 |