diff options
| author | ruki <[email protected]> | 2020-04-10 00:34:09 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-04-09 21:24:57 +0800 |
| commit | 004e3474596f582f36b469ef99e4c2fdb0ef4b20 (patch) | |
| tree | 23004246a58934c60f1424f0e570124ef1e157cc | |
| parent | 0a3f80680dc4cea8b3f6ac95c5cfc0380567a227 (diff) | |
fix inherit links
| -rw-r--r-- | xmake/rules/utils/inherit_links/inherit_links.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/utils/inherit_links/inherit_links.lua b/xmake/rules/utils/inherit_links/inherit_links.lua index d31d3eb14..841e0059c 100644 --- a/xmake/rules/utils/inherit_links/inherit_links.lua +++ b/xmake/rules/utils/inherit_links/inherit_links.lua @@ -65,7 +65,7 @@ function main(target) for _, name in ipairs({"frameworkdirs", "frameworks", "linkdirs", "links", "syslinks"}) do local values = _get_values_from_target(target, name) if values and #values > 0 then - target:add(name, unpack(values), {interface = true}) + target:add(name, values, {interface = true}) end end end |
