diff --git a/ports/cub/CONTROL b/ports/cub/CONTROL index 7c62c25a2db..eb708a84a8f 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 95b59f3f818..2449918e3ee 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 c1e91adf95e..937c6b0a79c 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); }