summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-01-04 17:37:06 -0500
committerPeter Hutterer <peter.hutterer@who-t.net>2017-01-26 11:25:40 +1000
commit0cb46dfb3a39a0f8a79d3a85536e02ce30269e44 (patch)
tree214610114bb8b06806335704f87e77197f0e26d0 /autogen.sh
parent59df21072192434e24d5eb39bd49cc5c100f2a65 (diff)
autogen.sh: Implement GNOME Build API
http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <ajax@redhat.com>
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