summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 464008ba..6c28a6c2 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -62,8 +62,9 @@ if test x$OBJ_DIR != x; then
cd "$OBJ_DIR"
fi
-echo Running configure "$@" ...
-$srcdir/configure "$@"
-
-echo
-echo "Now type 'make' to compile libxslt."
+if test -z "$NOCONFIGURE"; then
+ echo Running configure "$@" ...
+ $srcdir/configure "$@"
+ echo
+ echo "Now type 'make' to compile libxslt."
+fi