summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index 5299039..785db85 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -7,10 +7,11 @@ ORIGDIR=`pwd`
cd $srcdir
autoreconf -v --install || exit 1
-
cd $ORIGDIR || exit $?
-$srcdir/configure "$@"
-
git config --local --get format.subjectPrefix ||
git config --local format.subjectPrefix "PATCH rendercheck"
+
+if test -z "$NOCONFIGURE"; then
+ exec $srcdir/configure $@
+fi