mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 23:02:22 +02:00
bbclass: fix spelling mistakes
Fix some spelling mistakes in bbclass files (From OE-Core rev: ed484c06f436eea62c5d0b1a2964f219f3e5cb61) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
cf218e56af
commit
a205c4ce1d
@@ -1513,7 +1513,7 @@ python package_do_shlibs() {
|
||||
rpath = []
|
||||
p = sub.Popen([d.expand("${HOST_PREFIX}otool"), '-l', file],stdout=sub.PIPE,stderr=sub.PIPE)
|
||||
err, out = p.communicate()
|
||||
# If returned succesfully, process stderr for results
|
||||
# If returned successfully, process stderr for results
|
||||
if p.returncode == 0:
|
||||
for l in err.split("\n"):
|
||||
l = l.strip()
|
||||
@@ -1522,7 +1522,7 @@ python package_do_shlibs() {
|
||||
|
||||
p = sub.Popen([d.expand("${HOST_PREFIX}otool"), '-L', file],stdout=sub.PIPE,stderr=sub.PIPE)
|
||||
err, out = p.communicate()
|
||||
# If returned succesfully, process stderr for results
|
||||
# If returned successfully, process stderr for results
|
||||
if p.returncode == 0:
|
||||
for l in err.split("\n"):
|
||||
l = l.strip()
|
||||
|
||||
Reference in New Issue
Block a user