summaryrefslogtreecommitdiff
path: root/xmake
diff options
context:
space:
mode:
authorruki <[email protected]>2023-09-05 22:44:36 +0800
committerruki <[email protected]>2023-09-05 22:44:36 +0800
commite00a24200b1d238786d079f23df947bf583aec89 (patch)
tree8b7830da05e417e2b823ce28a0a06aa59bbdf766 /xmake
parent3559e1e82725e0a1a56e3afb8ca8d4b1f18a7ec0 (diff)
fix package depname #4166
Diffstat (limited to 'xmake')
-rw-r--r--xmake/actions/package/local/main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/package/local/main.lua b/xmake/actions/package/local/main.lua
index 0f0758bed..9b31d7d1f 100644
--- a/xmake/actions/package/local/main.lua
+++ b/xmake/actions/package/local/main.lua
@@ -32,7 +32,7 @@ function _get_librarydeps(target)
for _, depname in ipairs(target:get("deps")) do
local dep = project.target(depname)
if not ((target:is_binary() or target:is_shared()) and dep:is_static()) then
- table.insert(librarydeps, dep:name())
+ table.insert(librarydeps, dep:name():lower())
end
end
return librarydeps