diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-01 21:06:47 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-01 21:06:47 -0700 |
commit | 15f9d88e13bda2617c05c278a1ca9f6ce26df479 (patch) | |
tree | 78406ee346f1f735daccb5733574f9b6f24211a9 | |
parent | eed2fbbfc5292b5cf02d4c4b9f10266d8a41b787 (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 |