diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-12-28 19:46:08 +0000 |
---|---|---|
committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-01-02 21:16:50 +0000 |
commit | 4b022399815f32166c402d458a40afa6470fc776 (patch) | |
tree | e4ffb0026eb78a3d4b19595905e24449b2ac0811 /meta/conf/bitbake.conf | |
parent | b45dd39b21f72c63ce47c1ac8aa84651b939cf95 (diff) | |
download | openembedded-core-4b022399815f32166c402d458a40afa6470fc776.tar.gz openembedded-core-4b022399815f32166c402d458a40afa6470fc776.tar.bz2 openembedded-core-4b022399815f32166c402d458a40afa6470fc776.zip |
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.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta/conf/bitbake.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}" SECTION = "base" PRIORITY = "optional" SUMMARY ?= "${PN} version ${PV}-${PR}" -DESCRIPTION ?= "${SUMMARY}" +DESCRIPTION ?= "${SUMMARY}." # The following two are commented out because they result in a recursive # definition of the variable in some corner cases. These are left in |