From: hno <> Date: Tue, 28 Dec 2004 20:51:49 +0000 (+0000) Subject: Cosmetic workaround for autoconf not inheriting --silent when running X-Git-Tag: SQUID_3_0_PRE4~926 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b472584c42f823ca8bd15b9153d5b1ea64104e4;p=thirdparty%2Fsquid.git Cosmetic workaround for autoconf not inheriting --silent when running configure in subdirectories --- diff --git a/bootstrap.sh b/bootstrap.sh index 8d967d4fe9..af5fd6dce6 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -90,4 +90,18 @@ do fi done +# Fixup autoconf recursion using --silent/--quiet option +# autoconf should inherit this option whe recursing into subdirectories +# but it currently doesn't for some reason. +ed -s configure <<'EOS' >/dev/null || true +/ac_sub_configure_args=/ ++1 +i + # Add --quiet option if used + test "$silent" = yes && + ac_sub_configure_args="$ac_sub_configure_args --quiet" +. +w +EOS + echo "Autotool bootstrapping complete."