diff options
| author | ruki <[email protected]> | 2022-09-06 22:36:10 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-09-06 22:36:10 +0800 |
| commit | 1fb9ef1571ded01ffe2077edcee0057bf4ced911 (patch) | |
| tree | 6e212c8de704c9d63b47e5fcff5200f0fb7f55fd /xmake/modules/private/action/require/impl/install_packages.lua | |
| parent | 10d142571fc619051f83d116393ab86a29fcaee2 (diff) | |
rename linkdeps to librarydeps
Diffstat (limited to 'xmake/modules/private/action/require/impl/install_packages.lua')
| -rw-r--r-- | xmake/modules/private/action/require/impl/install_packages.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/modules/private/action/require/impl/install_packages.lua b/xmake/modules/private/action/require/impl/install_packages.lua index 1e99cf9b8..3e608f671 100644 --- a/xmake/modules/private/action/require/impl/install_packages.lua +++ b/xmake/modules/private/action/require/impl/install_packages.lua @@ -76,10 +76,10 @@ function _replace_package(packages, instance, extinstance) break end end - local linkdeps = rawinstance._LINKDEPS - for depidx, dep in ipairs(linkdeps) do + local librarydeps = rawinstance._LIBRARYDEPS + for depidx, dep in ipairs(librarydeps) do if dep == instance then - linkdeps[depidx] = extinstance + librarydeps[depidx] = extinstance break end end |
