diff options
author | Denys Dmytriyenko <denys@ti.com> | 2016-05-03 08:25:59 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-05-03 16:35:35 -0400 |
commit | 103171802bf4add2209ea33632eaf2bf4feb73be (patch) | |
tree | df05fd6285470b374003f9247afae2b45f28d6be /recipes-ti/includes/ti-unpack.inc | |
parent | 55408800f8842cda8d3b8d32c9b8737a1b5ef7f7 (diff) | |
download | meta-ti-103171802bf4add2209ea33632eaf2bf4feb73be.tar.gz |
ti-unpack: update for new Ubuntu 32bit lib packaging
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti/includes/ti-unpack.inc')
-rw-r--r-- | recipes-ti/includes/ti-unpack.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-ti/includes/ti-unpack.inc b/recipes-ti/includes/ti-unpack.inc index c19c78ca..91010445 100644 --- a/recipes-ti/includes/ti-unpack.inc +++ b/recipes-ti/includes/ti-unpack.inc | |||
@@ -24,8 +24,8 @@ python ti_bin_do_unpack() { | |||
24 | lib32path = '/lib' | 24 | lib32path = '/lib' |
25 | if os.path.exists('/lib64') and (os.path.islink('/lib64') or os.path.islink('/lib') or os.path.exists('/lib32')): | 25 | if os.path.exists('/lib64') and (os.path.islink('/lib64') or os.path.islink('/lib') or os.path.exists('/lib32')): |
26 | lib32path = '/lib32' | 26 | lib32path = '/lib32' |
27 | if not os.path.exists('%s/libc.so.6' % lib32path): | 27 | if not os.path.exists('%s/libc.so.6' % lib32path) and not os.path.exists('%s/i386-linux-gnu/libc.so.6' % lib32path): |
28 | bb.warn("TI installer requires 32bit glibc libraries for proper operation\nrun 'yum install glibc.i686' on Fedora or 'apt-get install ia32-libs' on Ubuntu/Debian") | 28 | bb.warn("TI installer requires 32bit glibc libraries for proper operation\nrun 'yum install glibc.i686' on Fedora or 'apt-get install libc6:i386' on Ubuntu/Debian") |
29 | 29 | ||
30 | localdata = bb.data.createCopy(d) | 30 | localdata = bb.data.createCopy(d) |
31 | bb.data.update_data(localdata) | 31 | bb.data.update_data(localdata) |