diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-12-28 19:46:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-02 22:39:24 +0000 |
commit | 6c6ae2a7bc6c6769d17227238f4911adf89e5abd (patch) | |
tree | c9a7ae5d1405e6fd815cca493ada984b1d290fbe /meta/conf | |
parent | 3bf4f689e08c16dd002f7fa9eb88b6b032bf06f8 (diff) | |
download | poky-6c6ae2a7bc6c6769d17227238f4911adf89e5abd.tar.gz |
bitbake.conf: add full stop to default DESCRIPTION
SUMMARY should not end with a full stop; however if DESCRIPTION is not
set in a recipe and thus defaulted from SUMMARY, the additional
DESCRIPTION values for other standard packages e.g. ${PN}-dev look a bit
odd without a full stop separating the SUMMARY value and the rest of the
text. Add a full stop to avoid this.
(From OE-Core rev: 4b022399815f32166c402d458a40afa6470fc776)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index ad1225b3c8..57668e14f2 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -214,7 +214,7 @@ BP = "${BPN}-${PV}" | |||
214 | SECTION = "base" | 214 | SECTION = "base" |
215 | PRIORITY = "optional" | 215 | PRIORITY = "optional" |
216 | SUMMARY ?= "${PN} version ${PV}-${PR}" | 216 | SUMMARY ?= "${PN} version ${PV}-${PR}" |
217 | DESCRIPTION ?= "${SUMMARY}" | 217 | DESCRIPTION ?= "${SUMMARY}." |
218 | 218 | ||
219 | # The following two are commented out because they result in a recursive | 219 | # The following two are commented out because they result in a recursive |
220 | # definition of the variable in some corner cases. These are left in | 220 | # definition of the variable in some corner cases. These are left in |