diff options
author | Joseph Myers <joseph@codesourcery.com> | 2009-07-17 15:11:33 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2009-07-17 15:11:33 +0000 |
commit | a6072eabf92ba8df9b9ba96ca06b078080d33928 (patch) | |
tree | 05f2f69bb43af1666b7676b677ef11dd5f8d1e6b /config/tls.m4 | |
parent | 1c4c13cd94a2f88ad6aefcac4c5b17825c7f7ba5 (diff) | |
download | gdb-a6072eabf92ba8df9b9ba96ca06b078080d33928.zip gdb-a6072eabf92ba8df9b9ba96ca06b078080d33928.tar.gz gdb-a6072eabf92ba8df9b9ba96ca06b078080d33928.tar.bz2 |
PR other/40784
* tls.m4 (GCC_CHECK_TLS): Add extra quoting around argument to
AC_LINK_IFELSE.
Diffstat (limited to 'config/tls.m4')
-rw-r--r-- | config/tls.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/tls.m4 b/config/tls.m4 index 4648a90..0ae6046 100644 --- a/config/tls.m4 +++ b/config/tls.m4 @@ -79,9 +79,9 @@ AC_DEFUN([GCC_CHECK_TLS], [ CFLAGS="-fPIC $CFLAGS" dnl If -shared works, test if TLS works in a shared library. AC_LINK_IFELSE([int f() { return 0; }], - AC_LINK_IFELSE([__thread int a; int b; int f() { return a = b; }], + [AC_LINK_IFELSE([__thread int a; int b; int f() { return a = b; }], [gcc_cv_have_tls=yes], - [gcc_cv_have_tls=no]), + [gcc_cv_have_tls=no])], [gcc_cv_have_tls=yes]) CFLAGS="$chktls_save_CFLAGS" LDFLAGS="$chktls_save_LDFLAGS"], [gcc_cv_have_tls=no]) |