From 389765de963238987ebe27b8237554bdffb7bfdc Mon Sep 17 00:00:00 2001 From: Chan Lee Date: Thu, 10 Apr 2025 13:05:11 +0800 Subject: package(autoconf): resolve issue with backslash-separated `CXX` path in MSYS --- xmake/modules/package/tools/autoconf.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/xmake/modules/package/tools/autoconf.lua b/xmake/modules/package/tools/autoconf.lua index 8d312a76a..821ab759f 100644 --- a/xmake/modules/package/tools/autoconf.lua +++ b/xmake/modules/package/tools/autoconf.lua @@ -434,6 +434,7 @@ function buildenvs(package, opt) if is_host("windows") then envs.CC = _translate_windows_bin_path(envs.CC) + envs.CXX = _translate_windows_bin_path(envs.CXX) envs.AS = _translate_windows_bin_path(envs.AS) envs.AR = _translate_windows_bin_path(envs.AR) envs.LD = _translate_windows_bin_path(envs.LD) -- cgit v1.3.1