diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-01 21:08:25 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-01 21:08:25 -0700 |
commit | 168cb69c5264f9b7ffd019c9c9867b23308832df (patch) | |
tree | bbef86169d01848b29435bad5960398a39610ad9 | |
parent | 9c630e1607a29ee63f546a6a2294ba84f3493a77 (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 |