From bf8d4cb6e5b0bc4be17782487d27c244e0b21925 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 1 Dec 2020 19:32:53 +0100 Subject: [PATCH] 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. --- ChangeLog | 8 ++++++++ modules/spawn-pipe | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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 -- 2.39.5