diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2017-06-14 14:20:12 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-14 14:44:59 +0100 |
commit | f2d349887710dcae05db09dc2277223e85fa1c19 (patch) | |
tree | 7ac73cc741d7b60d9a6bdc64f1e4280f8c013eb1 /meta | |
parent | 732e1f74bb9f5ecc98b29197f6bcab117710adab (diff) | |
download | openembedded-core-contrib-f2d349887710dcae05db09dc2277223e85fa1c19.tar.gz |
staging.bbclass: fix typo
The function is "sysroot_strip" instead of "split_and_strip_files".
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.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 9c2679406b7..1bb22aaa463 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass @@ -87,7 +87,7 @@ python sysroot_strip () { ret, result = oe.utils.getstatusoutput("file \"%s\"" % path.replace("\"", "\\\"")) if ret: - bb.error("split_and_strip_files: 'file %s' failed" % path) + bb.error("sysroot_strip: 'file %s' failed" % path) return type # Not stripped |