]> Savannah Git Hosting - gnulib.git/commitdiff
closedir: fix OS/2-related typos
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 24 Jan 2016 22:13:41 +0000 (14:13 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 24 Jan 2016 22:15:37 +0000 (14:15 -0800)
Problem reported by KO Myung-Hun in:
http://lists.gnu.org/archive/html/bug-gnulib/2016-01/msg00107.html
* m4/closedir.m4 (gl_FUNC_CLOSEDIR): Fix a couple of typos
in the last couple of changes.

ChangeLog
m4/closedir.m4

index ea537130babbc4a764694815bc0e12bb5b721417..fab0ffb22a528fdc3adb63724a3f0804d8c7c4b0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2016-01-24  Paul Eggert  <eggert@cs.ucla.edu>
+
+       closedir: fix OS/2-related typos
+       Problem reported by KO Myung-Hun in:
+       http://lists.gnu.org/archive/html/bug-gnulib/2016-01/msg00107.html
+       * m4/closedir.m4 (gl_FUNC_CLOSEDIR): Fix a couple of typos
+       in the last couple of changes.
+
 2016-01-24  KO Myung-Hun  <komh78@gmail.com>
 
        openat_proc_name: fix that last '/' is overwritten on OS/2 kLIBC
index e679694557d7ddc200461a2bb30001035154f004..0c9fd82de2a4aa7c05d4ef6fd542c73e707a78bb 100644 (file)
@@ -1,4 +1,4 @@
-# closedir.m4 serial 4
+# closedir.m4 serial 5
 dnl Copyright (C) 2011-2016 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -23,8 +23,8 @@ AC_DEFUN([gl_FUNC_CLOSEDIR],
     fi
   ])
   dnl Replace closedir() for supporting the gnulib-defined dirfd() function.
-  case $host_os,$HAVE_OPENDIR in
-    os2,1)
-      REPLACE_OPENDIR=1;;
+  case $host_os,$HAVE_CLOSEDIR in
+    os2*,1)
+      REPLACE_CLOSEDIR=1;;
   esac
 ])