]> Savannah Git Hosting - gnulib.git/commitdiff
spawn-pipe: Fix handling of OS/2 kLIBC.
authorBruno Haible <bruno@clisp.org>
Tue, 1 Dec 2020 18:32:53 +0000 (19:32 +0100)
committerBruno Haible <bruno@clisp.org>
Tue, 1 Dec 2020 18:33:52 +0000 (19:33 +0100)
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.

ChangeLog
modules/spawn-pipe

index 41c85c01c93140ef06d7bcfacfc6ce49d9ac63c6..3894e7cf1acd4e543efdc92326fc2d837ef9055c 100644 (file)
--- 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.
index 0ddbc74d3d8525101112f387a5650cbff2d637d3..2e7817078a181ccb6ee0df426e9810e1f57acd8e 100644 (file)
@@ -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