diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-04-26 10:39:03 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-07-07 18:08:25 +0300 |
commit | a473abe80f4c42a366f0573bbbc762fa440b7fe6 (patch) | |
tree | 6214c1d25162c2e614ed91e163011ac13091e7e3 /libbuild2/parser.cxx | |
parent | 900436dd83787f2cd47e7fc37f0530fc581a3e3b (diff) |
Use new cmdline type for canned command lines in {Build,Test}script
Diffstat (limited to 'libbuild2/parser.cxx')
-rw-r--r-- | libbuild2/parser.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbuild2/parser.cxx b/libbuild2/parser.cxx index 8343112..cc8fd9e 100644 --- a/libbuild2/parser.cxx +++ b/libbuild2/parser.cxx @@ -4731,6 +4731,7 @@ namespace build2 n == "paths" ? ptr (value_traits<paths>::value_type) : n == "dir_paths" ? ptr (value_traits<dir_paths>::value_type) : n == "names" ? ptr (value_traits<vector<name>>::value_type) : + n == "cmdline" ? ptr (value_traits<cmdline>::value_type) : nullptr; } |