summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--modules/spawn-pipe2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 41c85c01c9..3894e7cf1a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2020-12-01 Bruno Haible <bruno@clisp.org>
+
+ spawn-pipe: Fix handling of OS/2 kLIBC.
+ Reported by KO Myung-Hun <komh78@gmail.com> in
+ <https://lists.gnu.org/archive/html/bug-gnulib/2020-12/msg00005.html>.
+ * modules/spawn-pipe (configure.ac): Use the common idiom for
+ recognizing the OS/2 operating system.
+
2020-11-30 Bruno Haible <bruno@clisp.org>
execute: Fix uninitialized use of errno.
diff --git a/modules/spawn-pipe b/modules/spawn-pipe
index 0ddbc74d3d..2e7817078a 100644
--- a/modules/spawn-pipe
+++ b/modules/spawn-pipe
@@ -40,7 +40,7 @@ configure.ac:
gl_SPAWN_PIPE
AC_REQUIRE([AC_CANONICAL_HOST])
case "$host_os" in
- os2)
+ os2*)
AC_LIBOBJ([os2-spawn])
;;
esac