aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_installation.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-09-23 12:01:25 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-09-23 12:01:25 -0700
commit0b59e6c0fb0b1b5f5adae6311553cd2f8fc7c6c8 (patch)
treed7da87fc4623308b66261df119e6b54e4c090f3a /toolsrc/src/commands_installation.cpp
parente63244ab5fded49665752f2da270eeb1ef27f974 (diff)
downloadvcpkg-0b59e6c0fb0b1b5f5adae6311553cd2f8fc7c6c8.tar.gz
vcpkg-0b59e6c0fb0b1b5f5adae6311553cd2f8fc7c6c8.zip
[vcpkg build] Print the missing package's arch along with the package name
Diffstat (limited to 'toolsrc/src/commands_installation.cpp')
-rw-r--r--toolsrc/src/commands_installation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_installation.cpp b/toolsrc/src/commands_installation.cpp
index 35c78db8f..b688b8d5a 100644
--- a/toolsrc/src/commands_installation.cpp
+++ b/toolsrc/src/commands_installation.cpp
@@ -128,7 +128,7 @@ namespace vcpkg
System::println("");
for (const package_spec& p : unmet_dependencies)
{
- System::println(" %s", p.name);
+ System::println(" %s", to_string(p));
}
System::println("");
exit(EXIT_FAILURE);