]> code.ossystems Code Review - openembedded-core.git/commit
devtool: update-recipe: check output before treating it as a string
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Thu, 10 Nov 2016 01:45:14 +0000 (14:45 +1300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 23 Nov 2016 11:02:26 +0000 (11:02 +0000)
commit66bf6978fc807ecc422fb6b6328f68bc3406cf15
tree7f52bbcc977bd2a3b74e0d9acdc923152238f740
parent826f3cdb474b5728b22f08d2342fc90235ca9e7d
devtool: update-recipe: check output before treating it as a string

As of the move to Python 3 and the fixes we applied at that time,
bb.process.run() will return a byte array of length 0 rather than an
empty string if the output is empty. That may be a bug that we should
fix, but for now it's easiest to just check the result here before
treating it as a string. This fixes running "devtool update-recipe" or
"devtool finish" on a recipe which has no source tree, for example
initramfs-framework.

Fixes [YOCTO #10563].

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/lib/devtool/standard.py