From 0b59e6c0fb0b1b5f5adae6311553cd2f8fc7c6c8 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Fri, 23 Sep 2016 12:01:25 -0700 Subject: [vcpkg build] Print the missing package's arch along with the package name --- toolsrc/src/commands_installation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3