diff options
author | Daphne Pfister <daphnediane@mac.com> | 2015-05-05 16:04:29 -0500 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-05-07 22:02:07 -0700 |
commit | 97a81b6f10ddb38bf6c3d9736db76833d49df206 (patch) | |
tree | 5f56843011beed1a992f0bedac8a00be723d8eb9 | |
parent | ced59e4373b7ad8f89ba222b3f489fb22050b991 (diff) |
autogen.sh: Implement GNOME Build API
http://people.gnome.org/~walters/docs/build-api.txt
Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=90326
Signed-off-by: Daphne Pfister <daphne.pfister@genband.com>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -9,4 +9,6 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure "$@" +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |