oe/lib/pacakge_manager.py: Update missing pipeline decoding

Adds decoding needed by some commands output later used as
strings.

[YOCTO #9702]

(From OE-Core rev: 0440b5ace411c61f802376d4e1c9eac93e72d65f)

Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Mariano Lopez 2016-06-06 07:15:39 +00:00 committed by Richard Purdie
parent d28781bb56
commit 84441a96f0
1 changed files with 2 additions and 2 deletions

View File

@ -1411,7 +1411,7 @@ class RpmPM(PackageManager):
def package_info(self, pkg):
cmd = "%s %s info --urls %s" % (self.smart_cmd, self.smart_opt, pkg)
try:
output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True).decode("utf-8")
except subprocess.CalledProcessError as e:
bb.fatal("Unable to list available packages. Command '%s' "
"returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8")))
@ -1506,7 +1506,7 @@ class OpkgDpkgPM(PackageManager):
def package_info(self, pkg, cmd):
try:
output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True).decode("utf-8")
except subprocess.CalledProcessError as e:
bb.fatal("Unable to list available packages. Command '%s' "
"returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8")))