aboutsummaryrefslogtreecommitdiff
path: root/toolsrc
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 /toolsrc
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
Diffstat (limited to 'toolsrc')
-rw-r--r--toolsrc/src/vcpkg/build.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}