From: Amos Jeffries Date: Sun, 26 Jul 2015 00:57:35 +0000 (-0700) Subject: Cleanup: avoid mentioning compiler directives in configure output X-Git-Tag: merge-candidate-3-v1~32^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8a4ba7c5850f696633e3d18e3e472a02f31d90a;p=thirdparty%2Fsquid.git Cleanup: avoid mentioning compiler directives in configure output In particular -march=native. It confuses some downstream build tools to encounter the option in its full name form. --- diff --git a/configure.ac b/configure.ac index 290b6087a8..7d5aa2619d 100644 --- a/configure.ac +++ b/configure.ac @@ -55,7 +55,7 @@ AC_ARG_ENABLE(arch-native, SQUID_YESNO([$enableval], [Unrecognized argument to --disable-arch-native: $enableval]) ]) -AC_MSG_NOTICE([CPU -march=native optimization enabled: ${enable_arch_native:=auto}]) +AC_MSG_NOTICE([CPU arch native optimization enabled: ${enable_arch_native:=auto}]) if test "x${enable_arch_native}" != "xno"; then SQUID_CC_CHECK_ARGUMENT([squid_cv_check_marchnative],[-march=native]) fi