summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaphne Pfister <daphnediane@mac.com>2015-05-05 16:04:29 -0500
committerAlan Coopersmith <alan.coopersmith@oracle.com>2015-05-07 22:02:07 -0700
commit97a81b6f10ddb38bf6c3d9736db76833d49df206 (patch)
tree5f56843011beed1a992f0bedac8a00be723d8eb9
parentced59e4373b7ad8f89ba222b3f489fb22050b991 (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-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 354f254..fc34bd5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,4 +9,6 @@ cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure "$@"
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure "$@"
+fi