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
commit5129d4dbc57e3a00144b6ccc23ca4c6ede9b6509 (patch)
treeca6f89e590d33b7bc0f5f5c407c20d79590f144d /autogen.sh
parentbb4015a6b9394766d92186b4b71bbd49fa207532 (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