summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorJoshua Lock <joshua.g.lock@intel.com>2016-04-28 14:27:45 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-29 19:35:56 +0100
commit5b6e5ab134628ac473f261431bbfce983c24af1c (patch)
tree085bc7b51eb2a1d56d0b784849f7802a916b7987 /meta/recipes-extended
parent613fee35630f65716746688457e23ec31bd89586 (diff)
downloadpoky-5b6e5ab134628ac473f261431bbfce983c24af1c.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) (From OE-Core rev: e772d7cc924fafdd7a678710bca3e260bd622a01) 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> 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.bb8
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