summaryrefslogtreecommitdiff
path: root/xmake/modules/package
diff options
context:
space:
mode:
authorruki <[email protected]>2021-05-21 23:12:05 +0800
committerruki <[email protected]>2021-05-21 23:12:05 +0800
commitb12276b9fe5b350c0db0a72c06259720306c7e2f (patch)
tree67fd8f2e972ccf536fa93f393f1a6ea7555b06b7 /xmake/modules/package
parentf1c8144ef2a1461defedfedea4ed331eba5dc5e6 (diff)
update changelog
Diffstat (limited to 'xmake/modules/package')
-rw-r--r--xmake/modules/package/manager/vcpkg/search_package.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/package/manager/vcpkg/search_package.lua b/xmake/modules/package/manager/vcpkg/search_package.lua
index 09bf65eef..3073e2cd3 100644
--- a/xmake/modules/package/manager/vcpkg/search_package.lua
+++ b/xmake/modules/package/manager/vcpkg/search_package.lua
@@ -50,7 +50,7 @@ function main(name)
end
end
if packagename:find(name) and not packagename:find('%[.*' .. name .. '.*%]') then
- table.insert(results, {name = packagename, version = version, description = description})
+ table.insert(results, {name = "vcpkg::" .. packagename, version = version, description = description})
end
end
return results