diff options
| author | ruki <[email protected]> | 2023-09-05 22:44:36 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-09-05 22:44:36 +0800 |
| commit | e00a24200b1d238786d079f23df947bf583aec89 (patch) | |
| tree | 8b7830da05e417e2b823ce28a0a06aa59bbdf766 | |
| parent | 3559e1e82725e0a1a56e3afb8ca8d4b1f18a7ec0 (diff) | |
fix package depname #4166
| -rw-r--r-- | xmake/actions/package/local/main.lua | 2 |
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 |
