[vcpkg build] Print the missing package's arch along with the package name

This commit is contained in:
Alexander Karatarakis 2016-09-23 12:01:25 -07:00
parent e63244ab5f
commit 0b59e6c0fb

View File

@ -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);