diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-01 16:45:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-01 16:45:34 +0200 |
commit | e4c4fec8c9097722ee5ee94f2ce5ad0313ed8d7b (patch) | |
tree | e8de68957fc5cd00bb7b0b3199ca8a9abba4f678 /build/b.cxx | |
parent | f7e9830c0c413f05737002dcc8d06e73cb379980 (diff) |
Clean up group state, mtime design
Diffstat (limited to 'build/b.cxx')
-rw-r--r-- | build/b.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/b.cxx b/build/b.cxx index ef39446..d7fb9d3 100644 --- a/build/b.cxx +++ b/build/b.cxx @@ -212,10 +212,10 @@ main (int argc, char* argv[]) rules[update_id][typeid (fsdir)].emplace ("fsdir", fsdir_r); rules[clean_id][typeid (fsdir)].emplace ("fsdir", fsdir_r); - path_rule path_r; - rules[default_id][typeid (path_target)].emplace ("path", path_r); - rules[update_id][typeid (path_target)].emplace ("path", path_r); - rules[clean_id][typeid (path_target)].emplace ("path", path_r); + file_rule file_r; + rules[default_id][typeid (file)].emplace ("file", file_r); + rules[update_id][typeid (file)].emplace ("file", file_r); + rules[clean_id][typeid (file)].emplace ("file", file_r); // Figure out work and home directories. // |