diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-11-08 17:38:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-11-08 17:38:34 +0200 |
commit | 25fdb8f5d54a5a789d5b9eac0247cf95b7296e89 (patch) | |
tree | a490769a662cd22e55cfdb07228487004f32d796 | |
parent | cc66b4c93bea20220de9ebd4a0b3f686da1d0453 (diff) |
Adjust command line variable scope syntax to reflect build system changes
-rw-r--r-- | bpkg/pkg-command.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/pkg-command.cxx b/bpkg/pkg-command.cxx index 52e47c0..863e351 100644 --- a/bpkg/pkg-command.cxx +++ b/bpkg/pkg-command.cxx @@ -42,10 +42,10 @@ namespace bpkg if (v[0] == '!') gvars.push_back (v.c_str ()); - // Use path representation to get canonical trailing slash. + // Use path representation to get the trailing slash. // else - lvars.push_back (c.representation () + ':' + v); + lvars.push_back (c.representation () + v); } // This one is a bit tricky: we can only update all the packages at once if |