From: Paul Eggert Date: Sun, 24 Jan 2016 22:13:41 +0000 (-0800) Subject: closedir: fix OS/2-related typos X-Git-Tag: v1.0~6828 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=b701042f59e54c4d992e36698cf498b711e9af01;p=gnulib.git 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. --- diff --git a/ChangeLog b/ChangeLog index ea537130ba..fab0ffb22a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2016-01-24 Paul Eggert + + 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 openat_proc_name: fix that last '/' is overwritten on OS/2 kLIBC diff --git a/m4/closedir.m4 b/m4/closedir.m4 index e679694557..0c9fd82de2 100644 --- a/m4/closedir.m4 +++ b/m4/closedir.m4 @@ -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 ])