From eedf6c35b306184c8c4a5811033294a8f08f703a Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Tue, 13 Aug 2024 03:48:29 +0200 Subject: [PATCH] Revert change of "mingw-ucrt" platform string ... of commit 00176cd40fe9f385231e9c20b956fc4a84d240b9. The reverted change was made only for constistency, as discussed in https://github.com/ruby/ruby/pull/11358#issuecomment-2282222369 But the platform string "mingw-ucrt" should not be changed. It is used as RUBY_PLATFORM and as the rubygems platform, so that there should be a good reason to change the name of an established platform. "mingw-ucrt" was introduced intentionally in commit 576b2e64cdc5ea42ad345dd3c1c215e006c06fca. Related to GH-11358 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 91d33cef4d..be5adca842 100644 --- a/configure.ac +++ b/configure.ac @@ -4424,7 +4424,7 @@ AS_IF([test "${universal_binary-no}" = yes ], [ AC_DEFINE_UNQUOTED(RUBY_PLATFORM, "universal." RUBY_PLATFORM_CPU "-" RUBY_PLATFORM_OS) ], [ AS_IF([test "${target_os}-${rb_cv_msvcrt}" = "mingw32-ucrt" ], [ - arch="${target_cpu}-${target_os}-ucrt" + arch="${target_cpu}-mingw-ucrt" ], [ arch="${target_cpu}-${target_os}" ])