And suffix all commands/directories The only downside here is that the manpages are suffixed too, so one needs to do "man autoconf-2.71" to get the man page since the autoconf-wrapper only provides the commands and not the man pages.
27 lines
744 B
Diff
27 lines
744 B
Diff
From 5f618e4ac9259a2d5f35298e663ccec056467157 Mon Sep 17 00:00:00 2001
|
|
From: Jannick <thirdedition@gmx.net>
|
|
Date: Wed, 9 Dec 2020 00:35:58 +0100
|
|
Subject: [PATCH 3/3] autoconf-2.70-msys-specifics-config.guess
|
|
|
|
---
|
|
build-aux/config.guess | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/build-aux/config.guess b/build-aux/config.guess
|
|
index 699b3a1..19965a9 100644
|
|
--- a/build-aux/config.guess
|
|
+++ b/build-aux/config.guess
|
|
@@ -915,6 +915,9 @@ EOF
|
|
amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
|
|
echo x86_64-pc-cygwin
|
|
exit ;;
|
|
+ amd64:MSYS*:*:* | x86_64:MSYS*:*:*)
|
|
+ echo x86_64-unknown-msys
|
|
+ exit ;;
|
|
prep*:SunOS:5.*:*)
|
|
echo powerpcle-unknown-solaris2"$(echo "$UNAME_RELEASE"|sed -e 's/[^.]*//')"
|
|
exit ;;
|
|
--
|
|
2.29.2.windows.2
|
|
|