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-05-06 10:31:12 +0100 |
commit | 8d6bb655e592d9d7effaca5bf1a331f18c8df947 (patch) | |
tree | f624841fcef80d96b4033795e4fa423af08dc662 /meta/recipes-extended | |
parent | 30f9a5072d94f6c383b1ef5d25448af39691dce0 (diff) | |
download | poky-8d6bb655e592d9d7effaca5bf1a331f18c8df947.tar.gz |
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>
Diffstat (limited to 'meta/recipes-extended')
-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): | |||
206 | if 'qt3' in d.getVar('BBFILE_COLLECTIONS', False) or "": | 206 | if 'qt3' in d.getVar('BBFILE_COLLECTIONS', False) or "": |
207 | return 'libqt-mt3' | 207 | return 'libqt-mt3' |
208 | 208 | ||
209 | bb.warn('The meta-qt3 layer should be added, this layer provides Qt 3.x' \ | 209 | bb.warn('The meta-qt3 layer should be added, this layer provides Qt 3.x ' \ |
210 | 'libraries. Its intended use is for passing LSB tests as Qt3 is' \ | 210 | 'libraries. Its intended use is for passing LSB tests as Qt3 is ' \ |
211 | 'a requirement for LSB.') | 211 | 'a requirement for LSB.') |
212 | return '' | 212 | return '' |
213 | 213 | ||
@@ -229,8 +229,8 @@ def get_libqt4(d): | |||
229 | if 'qt4' in d.getVar('BBFILE_COLLECTIONS', False) or "": | 229 | if 'qt4' in d.getVar('BBFILE_COLLECTIONS', False) or "": |
230 | return d.getVar('QT4PKGS', False) | 230 | return d.getVar('QT4PKGS', False) |
231 | 231 | ||
232 | bb.warn('The meta-qt4 layer should be added, this layer provides Qt 4.x' \ | 232 | bb.warn('The meta-qt4 layer should be added, this layer provides Qt 4.x ' \ |
233 | 'libraries. Its intended use is for passing LSB tests as Qt4 is' \ | 233 | 'libraries. Its intended use is for passing LSB tests as Qt4 is ' \ |
234 | 'a requirement for LSB.') | 234 | 'a requirement for LSB.') |
235 | return '' | 235 | return '' |
236 | 236 | ||