diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-04-28 14:27:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-29 19:33:23 +0100 |
commit | e772d7cc924fafdd7a678710bca3e260bd622a01 (patch) | |
tree | a634bfcf6166d68e57af0a6533519956b177242c | |
parent | 3bfa60541216e1d1bd228b6d8c516d4a5736ae09 (diff) | |
download | openembedded-core-e772d7cc924fafdd7a678710bca3e260bd622a01.tar.gz openembedded-core-e772d7cc924fafdd7a678710bca3e260bd622a01.tar.bz2 openembedded-core-e772d7cc924fafdd7a678710bca3e260bd622a01.zip |
packagegroup-core-lsb: fix whitespace in meta-qt* warnings
Without these extra space characters the messages are ill-formatted, i.e:
'The meta-qt3 layer should be added, this layer provides Qt 3.xlibraries.
Its intended use is for passing LSB tests as Qt3 isa requirement for LSB.'
Changes to:
'The meta-qt3 layer should be added, this layer provides Qt 3.x libraries.
Its intended use is for passing LSB tests as Qt3 is a requirement for LSB.'
(From OE-Core rev: f0220cd4e686c3d28d222d434f2dbd7f0b41188c)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster@mvista.com>
-rw-r--r-- | meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb index a29c3d762e..fb533ce04f 100644 --- a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb +++ b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb @@ -206,8 +206,8 @@ def get_libqt3(d): if 'qt3' in d.getVar('BBFILE_COLLECTIONS', False) or "": return 'libqt-mt3' - bb.warn('The meta-qt3 layer should be added, this layer provides Qt 3.x' \ - 'libraries. Its intended use is for passing LSB tests as Qt3 is' \ + bb.warn('The meta-qt3 layer should be added, this layer provides Qt 3.x ' \ + 'libraries. Its intended use is for passing LSB tests as Qt3 is ' \ 'a requirement for LSB.') return '' @@ -229,8 +229,8 @@ def get_libqt4(d): if 'qt4' in d.getVar('BBFILE_COLLECTIONS', False) or "": return d.getVar('QT4PKGS', False) - bb.warn('The meta-qt4 layer should be added, this layer provides Qt 4.x' \ - 'libraries. Its intended use is for passing LSB tests as Qt4 is' \ + bb.warn('The meta-qt4 layer should be added, this layer provides Qt 4.x ' \ + 'libraries. Its intended use is for passing LSB tests as Qt4 is ' \ 'a requirement for LSB.') return '' |