* m4/math_h.m4 (gl_MATH_H): Fix typos.
authorJim Meyering <meyering@redhat.com>
Sat, 12 Apr 2008 15:25:00 +0000 (17:25 +0200)
committerJim Meyering <meyering@redhat.com>
Sat, 12 Apr 2008 15:25:00 +0000 (17:25 +0200)
ChangeLog
m4/math_h.m4

index 85a5c37..9bbda9e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-04-12  Jim Meyering  <meyering@redhat.com>
+
+       * m4/math_h.m4 (gl_MATH_H): Fix typos.
+
 2008-04-12  Bruno Haible  <bruno@clisp.org>
 
        * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
index 3090b6e..1e67652 100644 (file)
@@ -1,4 +1,4 @@
-# math_h.m4 serial 10
+# math_h.m4 serial 11
 dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -20,7 +20,7 @@ AC_DEFUN([gl_MATH_H],
         return f == 0;]])],
       [gl_cv_header_math_nan_works=yes],
       [gl_cv_header_math_nan_works=no])])
-  if test gl_cv_header_math_nan_works = no; then
+  if test $gl_cv_header_math_nan_works = no; then
     REPLACE_NAN=1
   fi
   AC_CACHE_CHECK([whether HUGE_VAL works], [gl_cv_header_math_huge_val_works],
@@ -30,7 +30,7 @@ AC_DEFUN([gl_MATH_H],
         return d == 0;]])],
       [gl_cv_header_math_huge_val_works=yes],
       [gl_cv_header_math_huge_val_works=no])])
-  if test gl_cv_header_math_huge_val_works = no; then
+  if test $gl_cv_header_math_huge_val_works = no; then
     REPLACE_HUGE_VAL=1
   fi
 ])