diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-10-11 11:01:01 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-10-11 11:01:34 +0200 |
commit | 8ee1f1ae8819ebe76434390a36895c5ad76bcfca (patch) | |
tree | 171df6dd073c165eab95c40d81df600c56f2caee | |
parent | 1b0127559946a41c920c91b532195d5f119a225e (diff) |
Tone down lib prefix warnings in bdep-new
-rw-r--r-- | bdep/new.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bdep/new.cxx b/bdep/new.cxx index 864050c..cff0d48 100644 --- a/bdep/new.cxx +++ b/bdep/new.cxx @@ -129,8 +129,7 @@ namespace bdep case type::exe: { if (s.compare (0, 3, "lib") == 0) - warn << "executable name starts with 'lib'" << - info << "this package may not be acceptable to some repositories"; + warn << "executable name starts with 'lib'"; break; } @@ -144,8 +143,7 @@ namespace bdep fail << "empty library name stem in '" << b << "'"; } else - warn << "library name does not start with 'lib'" << - info << "this package may not be acceptable to some repositories"; + warn << "library name does not start with 'lib'"; break; } |