From 2cd29c3107ff1f135e05fa55f3b389f37a6cb867 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Fri, 15 Jun 2012 13:46:51 -0400 Subject: [PATCH] autogen: Always abide --system If we do ./autogen.sh && ./configure, then later try ./autogen.sh --system, configure isn't invoked with the requested params. Instead config.status --recheck is run. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index f1591d8e17..53db06f7e3 100755 --- a/autogen.sh +++ b/autogen.sh @@ -77,7 +77,7 @@ if test "x$OBJ_DIR" != x; then cd "$OBJ_DIR" fi -if test -z "$*" && test -f config.status; then +if test -z "$*" && test -z "$EXTRA_ARGS" && test -f config.status; then ./config.status --recheck else $srcdir/configure $EXTRA_ARGS "$@" -- GitLab