aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}