summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-04-07 17:18:25 -0400
committerHans de Goede <hdegoede@redhat.com>2013-04-09 11:57:05 +0200
commit15d33799ee5e73316db2ff278ed6b29faa4d4424 (patch)
tree5aee045fb11808fe2c1cbdcbb511669989ad5860
parent71cf03fdcc82335c355be766c8765cf2a15e3e68 (diff)
downloadvd_agent-15d33799ee5e73316db2ff278ed6b29faa4d4424.tar.gz
vd_agent-15d33799ee5e73316db2ff278ed6b29faa4d4424.tar.xz
vd_agent-15d33799ee5e73316db2ff278ed6b29faa4d4424.zip
autogen: Honor NOCONFIGURE=1
http://people.gnome.org/~walters/docs/build-api.txt
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 52083e5..160fdf0 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,4 +1,6 @@
#!/bin/sh
autoreconf -fi
-./configure $@
+if test -z "$NOCONFIGURE"; then
+ exec ./configure "$@"
+fi