From 776af6c2fa5a80debfafb4697c462d0dd0e7d76c Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 3 Mar 2011 10:39:16 +0100 Subject: sanity.bbclass: some multilib systems have symlink /lib -> /lib64 * ie gentoo has /lib -> /lib64 * old test assumed only /lib64 -> /lib Signed-off-by: Martin Jansa Acked-by: Koen Kooi Signed-off-by: Richard Purdie --- meta/classes/sanity.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 13940f81db..433313b54a 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -211,7 +211,7 @@ def check_sanity(e): nolibs = data.getVar('NO32LIBS', e.data, True) if not nolibs: lib32path = '/lib' - if os.path.exists('/lib64') and os.path.islink('/lib64'): + if os.path.exists('/lib64') and ( os.path.islink('/lib64') or os.path.islink('/lib') ): lib32path = '/lib32' if os.path.exists('%s/libc.so.6' % lib32path) and not os.path.exists('/usr/include/gnu/stubs-32.h'): -- cgit 1.2.3-korg