From patchwork Wed Jan 30 14:00:55 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [02/17] multilib.conf: Use BASELIB to set baselib, not hardcode the value Date: Wed, 30 Jan 2013 14:00:55 -0000 From: Richard Purdie X-Patchwork-Id: 43693 Message-Id: <7c8a616c499c777b33ce15506eb6137645024037.1359554291.git.richard.purdie@linuxfoundation.org> To: openembedded-core@lists.openembedded.org Signed-off-by: Richard Purdie --- meta/conf/multilib.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/multilib.conf b/meta/conf/multilib.conf index 97b53ec..f86cff0 100644 --- a/meta/conf/multilib.conf +++ b/meta/conf/multilib.conf @@ -1,5 +1,5 @@ -baselib = "${@d.getVar('BASE_LIB_tune-' + (d.getVar('DEFAULTTUNE', True) or 'INVALID'), True) or 'lib'}" +baselib = "${@d.getVar('BASE_LIB_tune-' + (d.getVar('DEFAULTTUNE', True) or 'INVALID'), True) or d.getVar('BASELIB', True)}" MULTILIB_VARIANTS = "${@extend_variants(d,'MULTILIBS','multilib')}" MULTILIB_SAVE_VARNAME = "DEFAULTTUNE"