diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-08-15 03:54:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-08-15 03:54:01 +0000 |
commit | 1ee598e6cd5225d53eddddb382a5403e045f9e70 (patch) | |
tree | 98e6c03daf4001ba512a91d0f726c7bc1cdf8657 /sysdeps | |
parent | 7be287304434f820146ae4ba1f5c2a6f3a1e0144 (diff) | |
download | glibc-1ee598e6cd5225d53eddddb382a5403e045f9e70.tar.gz glibc-1ee598e6cd5225d53eddddb382a5403e045f9e70.tar.xz glibc-1ee598e6cd5225d53eddddb382a5403e045f9e70.zip |
(libc_cv_sparc32_tls): Change quotes before using [].
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/sparc/sparc32/elf/configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/sparc/sparc32/elf/configure.in b/sysdeps/sparc/sparc32/elf/configure.in index 550bf4f838..aa75e0bfaa 100644 --- a/sysdeps/sparc/sparc32/elf/configure.in +++ b/sysdeps/sparc/sparc32/elf/configure.in @@ -4,6 +4,7 @@ GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. if test "$usetls" != no; then # Check for support of thread-local storage handling in assembler and linker. AC_CACHE_CHECK(for sparc32 TLS support, libc_cv_sparc32_tls, [dnl +changequote(,)dnl cat > conftest.s <<\EOF .section ".tdata", "awT", @progbits .globl foo @@ -30,6 +31,7 @@ baz: sethi %tgd_hi22(foo), %l1 sethi %tle_hix22(foo), %l1 xor %l1, %tle_lox10(foo), %l1 EOF +changequote([,])dnl dnl if AC_TRY_COMMAND(${CC-cc} -c $CFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then libc_cv_sparc32_tls=yes |