diff options
| author | Phoebe <20694052+PhoebeHui@users.noreply.github.com> | 2020-04-04 00:41:36 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-03 09:41:36 -0700 |
| commit | 8782b0b8b9c10666d7e5b41ca5e4a6e58635cf12 (patch) | |
| tree | d42ad01fe66c5fb6c1838309a3870a81f635bca8 /toolsrc | |
| parent | e1fc03c474a311ea658f5c2178c434c91776c9d9 (diff) | |
| download | vcpkg-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.cpp | 2 |
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);
}
|
