From: Bruno Haible Date: Mon, 3 Feb 2025 22:15:35 +0000 (-0800) Subject: compile: Simplify, no need for nonexistent $file_conv=msys case, X-Git-Tag: v1.17.90~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=03c4c309384caff4829cee7cc4f56d1768b68d7b;p=thirdparty%2Fautomake.git compile: Simplify, no need for nonexistent $file_conv=msys case, * lib/compile (func_file_conv): Remove unnecessary |msys, added on 2019-11-11. * lib/ar-lib (func_file_conv): Likewise. --- diff --git a/lib/ar-lib b/lib/ar-lib index 7d62dea99..85761fbf1 100755 --- a/lib/ar-lib +++ b/lib/ar-lib @@ -2,7 +2,7 @@ # Wrapper for Microsoft lib.exe me=ar-lib -scriptversion=2024-06-19.01; # UTC +scriptversion=2025-02-03.05; # UTC # Copyright (C) 2010-2025 Free Software Foundation, Inc. # Written by Peter Rosin . @@ -65,7 +65,7 @@ func_file_conv () mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; - cygwin | msys) + cygwin) file=`cygpath -m "$file" || echo "$file"` ;; wine) diff --git a/lib/compile b/lib/compile index 14aec5621..e80b054a0 100755 --- a/lib/compile +++ b/lib/compile @@ -1,7 +1,7 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2024-12-03.03; # UTC +scriptversion=2025-02-03.05; # UTC # Copyright (C) 1999-2025 Free Software Foundation, Inc. # Written by Tom Tromey . @@ -67,7 +67,7 @@ func_file_conv () mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; - cygwin/* | msys/*) + cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*)