summaryrefslogtreecommitdiff
path: root/m4/ax_gcc_archflag.m4
diff options
context:
space:
mode:
authorRhys Ulerich <rhys.ulerich@gmail.com>2011-11-21 21:46:26 -0600
committerRhys Ulerich <rhys.ulerich@gmail.com>2011-11-21 21:46:26 -0600
commitaaa6e5bfe0ac2a0ceaff9832ef4e8b1c6ba5f160 (patch)
tree9ccdc6dcd7245562ef020687d9c62a16204cdf8b /m4/ax_gcc_archflag.m4
parent6c8eddf2606e768cea66e49fc746330ba88de18e (diff)
downloadautoconf-archive-aaa6e5bfe0ac2a0ceaff9832ef4e8b1c6ba5f160.tar.gz
Fix inadvertent breakage from commit cfea4ee52f7
Diffstat (limited to 'm4/ax_gcc_archflag.m4')
-rw-r--r--m4/ax_gcc_archflag.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/ax_gcc_archflag.m4 b/m4/ax_gcc_archflag.m4
index 6c2673d..2611bab 100644
--- a/m4/ax_gcc_archflag.m4
+++ b/m4/ax_gcc_archflag.m4
@@ -27,7 +27,7 @@
# When cross-compiling, or if $CC is not gcc, then ACTION-FAILURE is
# called unless the user specified --with-gcc-arch manually.
#
-# Requires macros: AX_CHECK_COMPILER_FLAGS, AX_GCC_X86_CPUID
+# Requires macros: AX_CHECK_COMPILE_FLAG, AX_GCC_X86_CPUID
#
# (The main emphasis here is on recent CPUs, on the principle that doing
# high-performance computing on old hardware is uncommon.)
@@ -63,7 +63,7 @@
# modified version of the Autoconf Macro, you may extend this special
# exception to the GPL to apply to your modified version as well.
-#serial 9
+#serial 10
AC_DEFUN([AX_GCC_ARCHFLAG],
[AC_REQUIRE([AC_PROG_CC])
@@ -197,7 +197,7 @@ for arch in $ax_gcc_arch; do
flags="-march=$arch -mcpu=$arch -m$arch"
fi
for flag in $flags; do
- AX_CHECK_COMPILER_FLAGS($flag, [ax_cv_gcc_archflag=$flag; break])
+ AX_CHECK_COMPILE_FLAG($flag, [ax_cv_gcc_archflag=$flag; break])
done
test "x$ax_cv_gcc_archflag" = xunknown || break
done