aboutsummaryrefslogtreecommitdiff
path: root/m4/threads.m4
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-06 07:43:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-06 07:43:11 +0200
commit44b9c8ef0370bca3255079d381c0fb8621ea5a21 (patch)
tree094d0e7965557b4397b19f2cca21018b74958c24 /m4/threads.m4
parentfa7c954409d6fa27440d965797f14c6c01397aee (diff)
Fix incorrect AC_LANG_SOURCE quoting
Thanks to Hugo Mildenberger <Hugo.Mildenberger@web.de> for the patch.
Diffstat (limited to 'm4/threads.m4')
-rw-r--r--m4/threads.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/threads.m4 b/m4/threads.m4
index fce3f39..4cd4c05 100644
--- a/m4/threads.m4
+++ b/m4/threads.m4
@@ -36,8 +36,8 @@ if test x$threads = xcheck; then
#
AC_MSG_CHECKING([for __thread keyword])
- CXX_LIBTOOL_LINK_IFELSE(
- AC_LANG_SOURCE([[
+ CXX_LIBTOOL_LINK_IFELSE([
+ AC_LANG_SOURCE([
__thread int tls_var;
int
@@ -45,7 +45,7 @@ if test x$threads = xcheck; then
{
tls_var = 0;
}
- ]]),
+ ])],
[threads_thread_keyword=yes])
AC_MSG_RESULT([$threads_thread_keyword])