summaryrefslogtreecommitdiff
path: root/xmake/core/project
diff options
context:
space:
mode:
authorruki <[email protected]>2020-03-08 18:06:23 +0800
committerruki <[email protected]>2020-03-08 18:06:23 +0800
commit07cb69433cdc6a8d60504ae88cc6251f9c69201a (patch)
tree1e4554c8f1941a620c0240d5d2c8e43e2d7789e5 /xmake/core/project
parent3f5723c632d0734ce3ea93e174cdf099eeefb543 (diff)
fix jobpool
Diffstat (limited to 'xmake/core/project')
-rw-r--r--xmake/core/project/target.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/xmake/core/project/target.lua b/xmake/core/project/target.lua
index cdcb65f0c..cb486a025 100644
--- a/xmake/core/project/target.lua
+++ b/xmake/core/project/target.lua
@@ -276,7 +276,7 @@ function _instance:get(name, opt)
end
-- get the extra configuration
- local extraconf = self._INFO:extraconf(name)
+ local extraconf = self:extraconf(name)
if extraconf then
-- filter values for public, private or interface if be not dictionary
if not table.is_dictionary(values) then
@@ -1456,8 +1456,6 @@ function _instance:script(name, generic)
end
end
end
-
- -- ok
return result
end