From ba23291b7fcee22cacfd83c29de35548b56c2aa3 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 9 Nov 2019 12:02:24 -0800 Subject: config: add msys support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Requested by Arnold Robbins in: https://lists.gnu.org/r/bug-gnulib/2019-11/msg00008.html He also requested a change to config.guess, which I’ll forward upstream. * build-aux/ar-lib (func_file_conv): * build-aux/compile (func_file_conv): * build-aux/config.rpath (wl, with_gnu_ld) (hardcode_libdir_flag_spec, libext, shrext, library_names_spec): Treat msys like cygwin. --- build-aux/ar-lib | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build-aux/ar-lib') diff --git a/build-aux/ar-lib b/build-aux/ar-lib index f64465e4f4..be8806a2fe 100755 --- a/build-aux/ar-lib +++ b/build-aux/ar-lib @@ -53,7 +53,7 @@ func_file_conv () MINGW*) file_conv=mingw ;; - CYGWIN*) + CYGWIN* | MSYS*) file_conv=cygwin ;; *) @@ -65,7 +65,7 @@ func_file_conv () mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; - cygwin) + cygwin | msys) file=`cygpath -m "$file" || echo "$file"` ;; wine) -- cgit v1.2.1