summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-01-04 08:06:05 -0500
committerSøren Sandmann Pedersen <ssp@redhat.com>2012-01-05 10:14:52 -0500
commitae651e7e739253f79f345f9fcbacad8627da0d85 (patch)
tree8d48f3bcaaba43efa89701564653db219a9abf14 /autogen.sh
parent89498a1178bc173857f3d1ee1f889afcc58b21b6 (diff)
autogen.sh: Support GNOME Build API
http://people.gnome.org/~walters/docs/build-api.txt
Diffstat (limited to 'autogen.sh')
-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