summaryrefslogtreecommitdiffstats
path: root/bdep
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-10-11 11:01:01 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-10-11 11:01:34 +0200
commit8ee1f1ae8819ebe76434390a36895c5ad76bcfca (patch)
tree171df6dd073c165eab95c40d81df600c56f2caee /bdep
parent1b0127559946a41c920c91b532195d5f119a225e (diff)
downloadbdep-8ee1f1ae8819ebe76434390a36895c5ad76bcfca.tar.gz
bdep-8ee1f1ae8819ebe76434390a36895c5ad76bcfca.tar.xz
bdep-8ee1f1ae8819ebe76434390a36895c5ad76bcfca.zip
Tone down lib prefix warnings in bdep-new
Diffstat (limited to 'bdep')
-rw-r--r--bdep/new.cxx6
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;
}