diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-09-15 19:28:48 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-24 17:54:26 +0100 |
commit | dd26efba0616e253466c1f5a83775e3079f3e9be (patch) | |
tree | 94f32cd14d7dea86421078b34d10845bc1c238c1 /meta/classes | |
parent | bdbd8b4fef2638098716f032f2f5e485873770c2 (diff) | |
download | poky-dd26efba0616e253466c1f5a83775e3079f3e9be.tar.gz |
insane.bbclass: make package_qa_clean_path return a relative path
Make package_qa_clean_path() return something like "work/path/to/file"
rather than "/work/path/to/file", the relative path is a little clear.
(From OE-Core rev: 67a1e4b087a39db04370685616d5b439b0f2b505)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/insane.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 72120f5068..05e31a74eb 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -167,7 +167,7 @@ def package_qa_get_machine_dict(): | |||
167 | 167 | ||
168 | def package_qa_clean_path(path,d): | 168 | def package_qa_clean_path(path,d): |
169 | """ Remove the common prefix from the path. In this case it is the TMPDIR""" | 169 | """ Remove the common prefix from the path. In this case it is the TMPDIR""" |
170 | return path.replace(d.getVar('TMPDIR',True),"") | 170 | return path.replace(d.getVar("TMPDIR", True) + "/", "") |
171 | 171 | ||
172 | def package_qa_write_error(type, error, d): | 172 | def package_qa_write_error(type, error, d): |
173 | logfile = d.getVar('QA_LOGFILE', True) | 173 | logfile = d.getVar('QA_LOGFILE', True) |