mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 20:53:03 +01:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
30f9a5072d
commit
8d6bb655e5
@@ -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 ''
|
||||
|
||||
|
||||
Reference in New Issue
Block a user