summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Todd Zullinger2009-05-11 15:24:07 -0400
committerGravatar Matt Colyer2009-05-11 20:24:08 -0700
commitd408db99aded5a768c1c7b6f01e14de6f14b2ec9 (patch)
tree89244f119991d38b89145a844d5bfc7ac7b72fb3
parent9f829ce67aac6cc45de23100d348f6d2776866a6 (diff)
downloadifuse-d408db99aded5a768c1c7b6f01e14de6f14b2ec9.tar.gz
ifuse-d408db99aded5a768c1c7b6f01e14de6f14b2ec9.tar.bz2
Call configure from autogen.sh
This can be disabled by setting the NOCONFIGURE variable to any value. Signed-off-by: Matt Colyer <matt@colyer.name>
-rwxr-xr-xautogen.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index c17ea96..35888cf 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,3 +4,7 @@ libtoolize
autoheader
automake --add-missing
autoconf
+
+if [ -z "$NOCONFIGURE" ]; then
+ ./configure "$@"
+fi