* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test", not "==".
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 2 Mar 2006 00:04:59 +0000 (00:04 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 2 Mar 2006 00:04:59 +0000 (00:04 +0000)
m4/ChangeLog
m4/extensions.m4

index f67761de08bcb17d15f1a22b3870271c6e65010c..498111f345d488e23e86f44d349f6fc22b817991 100644 (file)
@@ -1,3 +1,8 @@
+2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
+       not "==".  Reported by Ralf Wildenhues.
+
 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        Sync from coreutils.
index 5f22d42766d2179ba7e9162966352a64b4330d7f..51394b5c84ff44c7b7e7768b99368f6071a42ca6 100644 (file)
@@ -33,7 +33,7 @@ AC_DEFUN([gl_USE_SYSTEM_EXTENSIONS], [
          AC_INCLUDES_DEFAULT])],
        [ac_cv_safe_to_define___extensions__=yes],
        [ac_cv_safe_to_define___extensions__=no])])
-  test $ac_cv_safe_to_define___extensions__ == yes &&
+  test $ac_cv_safe_to_define___extensions__ = yes &&
     AC_DEFINE([__EXTENSIONS__])
   AC_DEFINE([_POSIX_PTHREAD_SEMANTICS])
 ])