about summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 5ed4faa1f7..63e2da2a6d 100644
--- a/configure.in
+++ b/configure.in
@@ -1617,8 +1617,8 @@ dnl Check whether the compiler supports the __thread keyword.
 if test "x$use__thread" != xno; then
   AC_CACHE_CHECK([for __thread], libc_cv_gcc___thread,
   [cat > conftest.c <<\EOF
-  __thread int a = 42;
-  EOF
+__thread int a = 42;
+EOF
   if AC_TRY_COMMAND([${CC-cc} $CFLAGS -c conftest.c >&AC_FD_CC]); then
     libc_cv_gcc___thread=yes
   else