summaryrefslogtreecommitdiff
path: root/xmake/modules
diff options
context:
space:
mode:
authorruki <[email protected]>2023-09-16 21:57:27 +0800
committerruki <[email protected]>2023-09-16 21:57:38 +0800
commit408aaa7524e2bf60e440f9a7413d8ef5b73cf215 (patch)
treef7621c9c21241c65e2996defb4b68db5602ce42a /xmake/modules
parent4558156324474d4ca9dd599ea93e2c822fe9bce9 (diff)
fix #4204
Diffstat (limited to 'xmake/modules')
-rw-r--r--xmake/modules/package/manager/vcpkg/install_package.lua4
1 files changed, 0 insertions, 4 deletions
diff --git a/xmake/modules/package/manager/vcpkg/install_package.lua b/xmake/modules/package/manager/vcpkg/install_package.lua
index b0bf890fd..6cd92573c 100644
--- a/xmake/modules/package/manager/vcpkg/install_package.lua
+++ b/xmake/modules/package/manager/vcpkg/install_package.lua
@@ -87,10 +87,6 @@ function _install_for_manifest(vcpkg, name, opt)
if require_version == "latest" then
require_version = nil
end
- -- 1.2.11+13 -> 1.2.11#13
- if require_version then
- require_version = require_version:gsub("%+", "#")
- end
local minversion = require_version
if minversion and minversion:startswith(">=") then
minversion = minversion:sub(3)