From: Cole Robinson Date: Fri, 15 Jun 2012 17:46:51 +0000 (-0400) Subject: autogen: Always abide --system X-Git-Tag: v0.9.13-rc1~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cd29c3107ff1f135e05fa55f3b389f37a6cb867;p=thirdparty%2Flibvirt.git 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. --- 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 "$@"