]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
compile: Simplify, no need for nonexistent $file_conv=msys case,
authorBruno Haible <bruno@clisp.org>
Mon, 3 Feb 2025 22:15:35 +0000 (14:15 -0800)
committerKarl Berry <karl@freefriends.org>
Mon, 3 Feb 2025 22:15:35 +0000 (14:15 -0800)
* lib/compile (func_file_conv): Remove unnecessary |msys, added on
2019-11-11.
* lib/ar-lib (func_file_conv): Likewise.

lib/ar-lib
lib/compile

index 7d62dea9980a5a9e4d2fdc463b2c9423ea130551..85761fbf19afa4dd8625dbe57c279ff97df7f232 100755 (executable)
@@ -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 <peda@lysator.liu.se>.
@@ -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)
index 14aec562188949c59ed922a4301d02aa46c76061..e80b054a078eb545312de0bb20b9eb264bd1ec1a 100755 (executable)
@@ -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 <tromey@cygnus.com>.
@@ -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/*)