summaryrefslogtreecommitdiff
path: root/xmake/modules/package/tools
diff options
context:
space:
mode:
authorruki <[email protected]>2026-03-23 23:54:20 +0800
committerruki <[email protected]>2026-03-23 23:54:20 +0800
commit7bf56c079214f65d5de92e4bd2cc58d969694477 (patch)
tree9948e70666bea83d1f112f80a23e8c7a1f8a9d92 /xmake/modules/package/tools
parent9659e157cd39571cfdd264ce8a2743b9a99175dc (diff)
fix some typos
Diffstat (limited to 'xmake/modules/package/tools')
-rw-r--r--xmake/modules/package/tools/autoconf.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/package/tools/autoconf.lua b/xmake/modules/package/tools/autoconf.lua
index 120467b7d..c2fc26954 100644
--- a/xmake/modules/package/tools/autoconf.lua
+++ b/xmake/modules/package/tools/autoconf.lua
@@ -607,7 +607,7 @@ function buildenvs(package, opt)
-- fix PKG_CONFIG_PATH for windows/msys2
-- @see https://github.com/xmake-io/xmake-repo/issues/3442
if package:is_plat("windows") then
- -- pkg-config can only support for unix path and env seperator on msys/cygwin
+ -- pkg-config can only support for unix path and env separator on msys/cygwin
PKG_CONFIG_PATH = _translate_cygwin_paths(PKG_CONFIG_PATH)
envs.PKG_CONFIG_PATH = path.joinenv(PKG_CONFIG_PATH, ":")
else