aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-configure.cxx
diff options
context:
space:
mode:
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;});