diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-08-27 15:06:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-08-27 15:06:14 +0200 |
commit | 8f583c118a68513ff8ed96d92f20fcf7e77cec16 (patch) | |
tree | ecd6b85ea6590b3f4674031e237e47aad378c15c | |
parent | d1c55f129cebff527876b5acecef36feb1369f65 (diff) |
Fix diagnostics bug
-rw-r--r-- | build2/bin/target.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build2/bin/target.cxx b/build2/bin/target.cxx index 6c62258..093df6e 100644 --- a/build2/bin/target.cxx +++ b/build2/bin/target.cxx @@ -174,7 +174,7 @@ namespace build2 if (const target* g2 = targets.find<libul> (dir, out, n)) { if (g != 0) - fail << "both " << *g << " and " << g2 << " targets declared"; + fail << "both " << *g << " and " << *g2 << " targets declared"; g = g2; } @@ -198,7 +198,6 @@ namespace build2 false }; - const target_type libua::static_type { "libua", |