aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_installation.cpp
diff options
context:
space:
mode:
authorAlexander Kaspar <alexander.kaspar@gmail.com>2016-12-01 08:59:01 +0100
committerAlexander Kaspar <alexander.kaspar@gmail.com>2016-12-01 08:59:01 +0100
commit7f9353dd9541ca15ebefa66e531e4bac4ad7c871 (patch)
treed1775b00285b0583c71163b3d219f9c539536399 /toolsrc/src/commands_installation.cpp
parent5a04753a4a99a6210990b25e8773b86ccbffec0b (diff)
parent223e7f970d30d3d97e64af3d1970d52cc0ddaaf5 (diff)
downloadvcpkg-7f9353dd9541ca15ebefa66e531e4bac4ad7c871.tar.gz
vcpkg-7f9353dd9541ca15ebefa66e531e4bac4ad7c871.zip
Merge branch 'master' of https://github.com/Microsoft/vcpkg into qca
Diffstat (limited to 'toolsrc/src/commands_installation.cpp')
-rw-r--r--toolsrc/src/commands_installation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_installation.cpp b/toolsrc/src/commands_installation.cpp
index f7af2ef7c..93335220d 100644
--- a/toolsrc/src/commands_installation.cpp
+++ b/toolsrc/src/commands_installation.cpp
@@ -59,7 +59,7 @@ namespace vcpkg
exit(EXIT_FAILURE);
}
- perform_all_checks(spec, paths);
+ PostBuildLint::perform_all_checks(spec, paths);
create_binary_control_file(paths, source_paragraph, target_triplet);
@@ -140,7 +140,7 @@ namespace vcpkg
const std::unordered_set<std::string> options = args.check_and_get_optional_command_arguments({OPTION_CHECKS_ONLY});
if (options.find(OPTION_CHECKS_ONLY) != options.end())
{
- perform_all_checks(spec, paths);
+ PostBuildLint::perform_all_checks(spec, paths);
exit(EXIT_SUCCESS);
}