diff options
| author | ruki <[email protected]> | 2021-03-27 00:58:49 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-03-27 00:58:49 +0800 |
| commit | 313274ab5e9d3dce17460a832a966e2383f6ec4a (patch) | |
| tree | 34ebb0289198911de7ec3eca2bca66ced29b13e6 /xmake/core/package/package.lua | |
| parent | 55db717033eac0d71650149d9deef7744ecacd13 (diff) | |
add link deps
Diffstat (limited to 'xmake/core/package/package.lua')
| -rw-r--r-- | xmake/core/package/package.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/core/package/package.lua b/xmake/core/package/package.lua index 3ca8c6ed8..fd9ef0d6c 100644 --- a/xmake/core/package/package.lua +++ b/xmake/core/package/package.lua @@ -1228,8 +1228,8 @@ function _instance:exists() return self._FETCHINFO ~= nil end --- fetch all local info with dependencies -function _instance:fetchdeps() +-- fetch link info of dependencies +function _instance:fetch_linkdeps() local fetchinfo = self:fetch() if not fetchinfo then return @@ -1349,7 +1349,7 @@ end -- generate building configs for has_xxx/check_xxx function _instance:_generate_build_configs(configs) - configs = table.join(self:fetchdeps(), configs) + configs = table.join(self:fetch_linkdeps(), configs) if self:is_plat("windows") then local ld = self:build_getenv("ld") local vs_runtime = self:config("vs_runtime") |
