diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-12-06 11:16:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-12-06 11:16:22 +0200 |
commit | 9d860f46631c1567c62336fcb25cf7b8090855a4 (patch) | |
tree | 4df23a20e36671246718fc55af6fa5074d791467 /libbuild2/make-parser.test.cxx | |
parent | 2006284bfbda3416eb8348078fd98fa518d25c47 (diff) |
Recognize absolute Windows paths in make parser
Diffstat (limited to 'libbuild2/make-parser.test.cxx')
-rw-r--r-- | libbuild2/make-parser.test.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libbuild2/make-parser.test.cxx b/libbuild2/make-parser.test.cxx index 9f60bad..5c57978 100644 --- a/libbuild2/make-parser.test.cxx +++ b/libbuild2/make-parser.test.cxx @@ -19,8 +19,6 @@ namespace build2 int main (int, char* argv[]) { - bool strict (false); - // Fake build system driver, default verbosity. // init_diag (1); @@ -54,7 +52,7 @@ namespace build2 size_t pos (0); do { - pair<make_type, path> r (make.next (l, pos, ll, strict)); + pair<make_type, path> r (make.next (l, pos, ll)); cout << (r.first == make_type::target ? 'T' : 'P'); |