summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2017-06-14 14:20:12 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-14 14:53:57 +0100
commit2b85c9223485a054baa87ef72c15843feb099318 (patch)
tree60e9a396f4a3bc50808378ee869eddde863022a6 /meta
parent4a7ce464fd9ad0b945d63cd31dc74c18c6d0fdc9 (diff)
downloadpoky-2b85c9223485a054baa87ef72c15843feb099318.tar.gz
staging.bbclass: fix typo
The function is "sysroot_strip" instead of "split_and_strip_files". (From OE-Core rev: f2d349887710dcae05db09dc2277223e85fa1c19) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/staging.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 9c2679406b..1bb22aaa46 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -87,7 +87,7 @@ python sysroot_strip () {
87 ret, result = oe.utils.getstatusoutput("file \"%s\"" % path.replace("\"", "\\\"")) 87 ret, result = oe.utils.getstatusoutput("file \"%s\"" % path.replace("\"", "\\\""))
88 88
89 if ret: 89 if ret:
90 bb.error("split_and_strip_files: 'file %s' failed" % path) 90 bb.error("sysroot_strip: 'file %s' failed" % path)
91 return type 91 return type
92 92
93 # Not stripped 93 # Not stripped