From: Bruno Haible Date: Tue, 1 Dec 2020 18:32:53 +0000 (+0100) Subject: spawn-pipe: Fix handling of OS/2 kLIBC. X-Git-Tag: v1.0~3443 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=bf8d4cb6e5b0bc4be17782487d27c244e0b21925;p=gnulib.git spawn-pipe: Fix handling of OS/2 kLIBC. Reported by KO Myung-Hun in . * modules/spawn-pipe (configure.ac): Use the common idiom for recognizing the OS/2 operating system. --- diff --git a/ChangeLog b/ChangeLog index 41c85c01c9..3894e7cf1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2020-12-01 Bruno Haible + + spawn-pipe: Fix handling of OS/2 kLIBC. + Reported by KO Myung-Hun in + . + * modules/spawn-pipe (configure.ac): Use the common idiom for + recognizing the OS/2 operating system. + 2020-11-30 Bruno Haible 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