diff options
| author | ruki <[email protected]> | 2023-09-11 18:04:56 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-11 18:04:56 +0800 |
| commit | e4cd95393db8b15b2419d10ffa6167103b3cbb6f (patch) | |
| tree | 81e60d6ecfde14d8bfd70d68930046b61c1e8bea | |
| parent | 03bba700206c11d0c4964e57038b018d36f8d505 (diff) | |
| parent | 86a6f21c87e04e8fd53e37b7486c11b7a143ebc5 (diff) | |
Merge pull request #4190 from OkazakiNagisa/patch-1
fix remote package depname
| -rw-r--r-- | xmake/actions/package/remote/main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/package/remote/main.lua b/xmake/actions/package/remote/main.lua index 91c859fb9..47966ccf2 100644 --- a/xmake/actions/package/remote/main.lua +++ b/xmake/actions/package/remote/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 |
