diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-04-10 14:28:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-04-10 14:28:23 +0200 |
commit | 1308eb0d740a687161641d52dabad8c0f849db08 (patch) | |
tree | d44ae8e001db5c54f0b619616d04efe2706a207e /libbuild2/install/utility.hxx | |
parent | 74d42005e25e4a3c8356d44010b82a206b8aa7e6 (diff) |
Add support for negation in config.install.filter
Diffstat (limited to 'libbuild2/install/utility.hxx')
-rw-r--r-- | libbuild2/install/utility.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/install/utility.hxx b/libbuild2/install/utility.hxx index dca8eb4..fc40ebe 100644 --- a/libbuild2/install/utility.hxx +++ b/libbuild2/install/utility.hxx @@ -113,7 +113,7 @@ namespace build2 // // If entry type is a directory, then leaf must be empty. // - using filters = vector<pair<string, string>>; + using filters = vector<pair<string, optional<string>>>; LIBBUILD2_SYMEXPORT bool filter_entry (const scope& rs, |