changeset 15267:b6beea3e3300

* m4/lstat.m4 (gl_FUNC_LSTAT): Fix typo in prerequisite. After the 2011-05-21 change, this macro requires gl_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, not AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
author Paul Eggert <eggert@cs.ucla.edu>
date Thu, 16 Jun 2011 16:01:23 -0700
parents ef94fe13fa4f
children a36b75afc610
files ChangeLog m4/lstat.m4
diffstat 2 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-06-16  Paul Eggert  <eggert@cs.ucla.edu>
+
+	* m4/lstat.m4 (gl_FUNC_LSTAT): Fix typo in prerequisite.
+	After the 2011-05-21 change, this macro requires
+	gl_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, not
+	AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
+
 2011-06-16  Bruno Haible  <bruno@clisp.org>
 
 	fprintftime: Move AC_LIBOBJ invocations to module description.
--- a/m4/lstat.m4
+++ b/m4/lstat.m4
@@ -1,4 +1,4 @@
-# serial 22
+# serial 23
 
 # Copyright (C) 1997-2001, 2003-2011 Free Software Foundation, Inc.
 #
@@ -15,7 +15,7 @@
   dnl "#define lstat stat", and lstat.c is a no-op.
   AC_CHECK_FUNCS_ONCE([lstat])
   if test $ac_cv_func_lstat = yes; then
-    AC_REQUIRE([AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK])
+    AC_REQUIRE([gl_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK])
     if test $gl_cv_func_lstat_dereferences_slashed_symlink = no; then
       REPLACE_LSTAT=1
     fi