aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-05-17 08:30:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-05-17 08:30:11 +0200
commitfc71e1ec0824c60a4c0ead6fc745e31022dfbd9f (patch)
tree3a5cd734011ec0ac37e2097577f0b1b666bbf3ac
parenta8e16d5eb61eb4e7eaa135413b1af13c1f9ef82b (diff)
Minor bdep-new fix
-rw-r--r--bdep/new.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bdep/new.cxx b/bdep/new.cxx
index 8f81ba3..4a37fdb 100644
--- a/bdep/new.cxx
+++ b/bdep/new.cxx
@@ -139,8 +139,8 @@ namespace bdep
license_full =
cmp ("MIT") ? "MIT License" :
- cmp ("BSD3") ? "New 3-clause BSD License" :
cmp ("BSD2") ? "Simplified 2-clause BSD License" :
+ cmp ("BSD3") ? "New 3-clause BSD License" :
cmp ("BSD4") ? "Original 4-clause BSD License" :
cmp ("GPLv2") ? "GNU General Public License v2.0" :
cmp ("GPLv3") ? "GNU General Public License v3.0" :
@@ -605,7 +605,7 @@ namespace bdep
if (license_full.empty ())
os << "license: " << license << endl;
else
- os << "license: " << license << " ; " << license_full << endl;
+ os << "license: " << license << " ; " << license_full << "." << endl;
if (readme)
os << "description-file: README.md" << endl;
os << "url: https://example.org/" << (pn ? pn->string () : n) << endl