diff options
| author | Squareys <squareys@googlemail.com> | 2018-02-16 14:27:32 +0100 |
|---|---|---|
| committer | Squareys <squareys@googlemail.com> | 2018-02-16 14:27:59 +0100 |
| commit | f1ce125a28c98fd5a87bf509ac965b06c219d8f3 (patch) | |
| tree | dbe22888b9a5a617dff4f5c9c0e83a5002f96187 /toolsrc/include | |
| parent | 16faed678540be37ea623fa7f0f2c2e7c442b147 (diff) | |
| download | vcpkg-f1ce125a28c98fd5a87bf509ac965b06c219d8f3.tar.gz vcpkg-f1ce125a28c98fd5a87bf509ac965b06c219d8f3.zip | |
[vcpkg] Fix build command for packages that depend of features
Signed-off-by: Squareys <squareys@googlemail.com>
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg/build.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg/build.h b/toolsrc/include/vcpkg/build.h index e3f8bf79e..d7c5c8344 100644 --- a/toolsrc/include/vcpkg/build.h +++ b/toolsrc/include/vcpkg/build.h @@ -104,11 +104,11 @@ namespace vcpkg::Build struct ExtendedBuildResult { ExtendedBuildResult(BuildResult code); - ExtendedBuildResult(BuildResult code, std::vector<PackageSpec>&& unmet_deps); + ExtendedBuildResult(BuildResult code, std::vector<FeatureSpec>&& unmet_deps); ExtendedBuildResult(BuildResult code, std::unique_ptr<BinaryControlFile>&& bcf); BuildResult code; - std::vector<PackageSpec> unmet_dependencies; + std::vector<FeatureSpec> unmet_dependencies; std::unique_ptr<BinaryControlFile> binary_control_file; }; |
