diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-31 23:36:28 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2018-03-09 18:08:27 -0800 |
commit | d407ce86fa7a1402eb6d12895a5e97a6ffd3478a (patch) | |
tree | d607b3754d2f89ec736c224079211189c1a735b4 | |
parent | 4168dad45e494982e77b4ed4021313de4d010612 (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
@@ -12,5 +12,6 @@ cd $ORIGDIR || exit $? git config --local --get format.subjectPrefix >/dev/null 2>&1 || git config --local format.subjectPrefix "PATCH app/xmore" -$srcdir/configure "$@" - +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |