1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

libav: update i586 TARGET_ARCH test to also handle i686

(From OE-Core rev: 0dd6690fea182a23a1fc2b0667af67ddc1f5d1e9)

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Andre McCurdy
2015-06-30 15:28:50 -07:00
committed by Richard Purdie
parent 090e957399
commit d7826f2220
+1 -1
View File
@@ -138,7 +138,7 @@ python populate_packages_prepend() {
prepend=True,
allow_links=True)
if d.getVar('TARGET_ARCH', True) == 'i586':
if d.getVar('TARGET_ARCH', True) in [ 'i586', 'i686' ]:
# libav can't be build with -fPIC for 32-bit x86
pkgs = d.getVar('PACKAGES', True).split()
for pkg in pkgs: