diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-23 16:09:27 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-23 16:09:27 +0200 |
commit | 0bd954eabb236bc9530220ffbc076967d35e33f4 (patch) | |
tree | 320072dadaa23ffc378e0e1a5ec99ae406e48f55 /build/b.cxx | |
parent | fefe0657f29b8db782f7a722dd46b074b991cf08 (diff) |
Don't create new target for alias/action/dir prerequisite
Diffstat (limited to 'build/b.cxx')
-rw-r--r-- | build/b.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/b.cxx b/build/b.cxx index a71a866..1edce6b 100644 --- a/build/b.cxx +++ b/build/b.cxx @@ -182,10 +182,10 @@ main (int argc, char* argv[]) rules[typeid (obj)].emplace ("cxx.gnu.compile", cxx_compile); dir_rule dir_r; - rules[typeid (dir)].emplace ("", dir_r); + rules[typeid (dir)].emplace ("dir", dir_r); path_rule path_r; - rules[typeid (path_target)].emplace ("", path_r); + rules[typeid (path_target)].emplace ("path", path_r); // Build. // |