aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhoebe <20694052+PhoebeHui@users.noreply.github.com>2020-04-04 00:41:36 +0800
committerGitHub <noreply@github.com>2020-04-03 09:41:36 -0700
commit8782b0b8b9c10666d7e5b41ca5e4a6e58635cf12 (patch)
treed42ad01fe66c5fb6c1838309a3870a81f635bca8
parente1fc03c474a311ea658f5c2178c434c91776c9d9 (diff)
downloadvcpkg-8782b0b8b9c10666d7e5b41ca5e4a6e58635cf12.tar.gz
vcpkg-8782b0b8b9c10666d7e5b41ca5e4a6e58635cf12.zip
[vcpkg] Fix spec instance name (#10660)
* [vcpkg] Fix spec instance name * Change cub version for testing the changes * Add vulkan-hpp to test
-rw-r--r--ports/cub/CONTROL2
-rw-r--r--ports/vulkan-hpp/CONTROL2
-rw-r--r--toolsrc/src/vcpkg/build.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/ports/cub/CONTROL b/ports/cub/CONTROL
index 7c62c25a2..eb708a84a 100644
--- a/ports/cub/CONTROL
+++ b/ports/cub/CONTROL
@@ -1,4 +1,4 @@
Source: cub
-Version: 1.8.0
+Version: 1.8.0-1
Description: CUB is a flexible library of cooperative threadblock primitives and other utilities for CUDA kernel programming
Build-Depends: cuda
diff --git a/ports/vulkan-hpp/CONTROL b/ports/vulkan-hpp/CONTROL
index 95b59f3f8..2449918e3 100644
--- a/ports/vulkan-hpp/CONTROL
+++ b/ports/vulkan-hpp/CONTROL
@@ -1,4 +1,4 @@
Source: vulkan-hpp
-Version: 2019-05-11
+Version: 2019-05-11-1
Description: Header only C++ bindings for the Vulkan C API
Build-Depends: vulkan
diff --git a/toolsrc/src/vcpkg/build.cpp b/toolsrc/src/vcpkg/build.cpp
index c1e91adf9..937c6b0a7 100644
--- a/toolsrc/src/vcpkg/build.cpp
+++ b/toolsrc/src/vcpkg/build.cpp
@@ -831,7 +831,7 @@ namespace vcpkg::Build
{
for (const FeatureSpec& fspec : kv.second)
{
- if (!(status_db.is_installed(fspec) || spec.name() == name))
+ if (!(status_db.is_installed(fspec) || fspec.name() == name))
{
missing_fspecs.emplace_back(fspec);
}