From 5c8d2cb32c5638f2f2255fa3c1044169c0a1d7be Mon Sep 17 00:00:00 2001 From: Arthur LAURENT Date: Fri, 2 Feb 2024 15:42:38 +0100 Subject: remove unnecessary path.normalize --- xmake/rules/c++/modules/modules_support/clang/compiler_support.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake/rules/c++/modules/modules_support/clang/compiler_support.lua b/xmake/rules/c++/modules/modules_support/clang/compiler_support.lua index 1f4df5013..83bd104be 100644 --- a/xmake/rules/c++/modules/modules_support/clang/compiler_support.lua +++ b/xmake/rules/c++/modules/modules_support/clang/compiler_support.lua @@ -204,7 +204,7 @@ function get_stdmodules(target) if cpplib then if cpplib == "c++" then local clang_path = path.directory(get_clang_path(target)) - local clang_lib_path = path.normalize(path.join(clang_path, "..", "lib")) + local clang_lib_path = path.join(clang_path, "..", "lib") local modules_json_path = find_file("**.modules.json", clang_lib_path) if modules_json_path then local modules_json = json.decode(io.readfile(modules_json_path)) -- cgit v1.3.1