diff options
author | Roland McGrath <roland@redhat.com> | 2010-07-26 12:45:17 -0700 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2010-07-26 12:45:17 -0700 |
commit | 1c7570ff36595cba9f5797453eda95969a72c56e (patch) | |
tree | 60b08315b0f89203fe071e610b24606dae75305d /configure.in | |
parent | 8d50becc0421e86fc15f9a3453cf1772fc11f565 (diff) | |
download | glibc-1c7570ff36595cba9f5797453eda95969a72c56e.tar.gz glibc-1c7570ff36595cba9f5797453eda95969a72c56e.tar.xz glibc-1c7570ff36595cba9f5797453eda95969a72c56e.zip |
BZ #11840: Fix config.cache usage for -fgnu89-inline check.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 56849dfc48..036a950d8f 100644 --- a/configure.in +++ b/configure.in @@ -1803,11 +1803,11 @@ else fi rm -f conftest*]) if test $libc_cv_gnu89_inline = yes; then - libc_cv_gnu89_inline=-fgnu89-inline + gnu89_inline=-fgnu89-inline else - libc_cv_gnu89_inline= + gnu89_inline= fi -AC_SUBST(libc_cv_gnu89_inline) +AC_SUBST(gnu89_inline) if test $elf != yes; then AC_CACHE_CHECK(for .init and .fini sections, libc_cv_have_initfini, |