From f4e192564a6e048eef14f21ab4d269874b6bfba3 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 23 May 2018 18:30:01 +0300 Subject: Adapt to inventing package_name type --- bdep/build.txx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bdep/build.txx') diff --git a/bdep/build.txx b/bdep/build.txx index 804d590..a1690b4 100644 --- a/bdep/build.txx +++ b/bdep/build.txx @@ -65,7 +65,7 @@ namespace bdep if (!all) { for (const package_location& p: pp.packages) - pkgs.push_back (p.name.c_str ()); + pkgs.push_back (p.name.string ().c_str ()); } // Build in each configuration skipping empty ones. @@ -88,7 +88,7 @@ namespace bdep pkgs.clear (); for (const package_state& p: c->packages) - pkgs.push_back (p.name.c_str ()); + pkgs.push_back (p.name.string ().c_str ()); } // If we are printing multiple configurations, separate them with a -- cgit v1.1