diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 22:10:55 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 22:10:55 -0700 |
commit | a91574fe283263a3f9d91fb257ecb2c5b0a97541 (patch) | |
tree | 765e0b4ef2c1ac8e206c2d1593ae265cd7621b2f | |
parent | 6387133e231ec16da4204fddaffafe70d077e5d8 (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 |