aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-configure.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-06-04 14:26:47 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2016-06-18 15:10:59 +0300
commit272dd3d81b1e7f2f0ce98dc19299a84f027e4b59 (patch)
tree8a1d9f6ade57b6d2a91ec1e7d270575457f86c83 /bpkg/pkg-configure.cxx
parentb501355018d904bcc2ffb467b59377ccd8e592e8 (diff)
Quote build2 operations arguments
Diffstat (limited to 'bpkg/pkg-configure.cxx')
-rw-r--r--bpkg/pkg-configure.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/bpkg/pkg-configure.cxx b/bpkg/pkg-configure.cxx
index e17ac01..6027269 100644
--- a/bpkg/pkg-configure.cxx
+++ b/bpkg/pkg-configure.cxx
@@ -105,11 +105,11 @@ namespace bpkg
string bspec;
if (src_root == out_root)
- bspec = "configure(" + out_root.string () + "/)";
+ bspec = "configure('" + out_root.string () + "/')";
else
- bspec = "configure(" +
- src_root.string () + "/@" +
- out_root.string () + "/)";
+ bspec = "configure('" +
+ src_root.string () + "/'@'" +
+ out_root.string () + "/')";
l4 ([&]{trace << "buildspec: " << bspec;});