diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/insane.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 7b7175232d..bc72ea5b3b 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -318,7 +318,10 @@ def package_qa_check_desktop(path, name, d): | |||
318 | import bb, os | 318 | import bb, os |
319 | if path.endswith(".desktop"): | 319 | if path.endswith(".desktop"): |
320 | validate = os.path.join(bb.data.getVar('STAGING_BINDIR_NATIVE',d,True), 'desktop-file-validate') | 320 | validate = os.path.join(bb.data.getVar('STAGING_BINDIR_NATIVE',d,True), 'desktop-file-validate') |
321 | os.system ("%s %s" % (validate, path)) | 321 | output = os.popen("%s %s" % (validate, path)) |
322 | # This only produces output on errors | ||
323 | for l in output: | ||
324 | bb.error(l.strip()) | ||
322 | return True | 325 | return True |
323 | 326 | ||
324 | def package_qa_check_staged(path,d): | 327 | def package_qa_check_staged(path,d): |