From: Richard Purdie Date: Mon, 28 Jan 2013 10:45:54 +0000 (+0000) Subject: multilib.conf: Use BASELIB to set baselib, not hardcode the value X-Git-Tag: yocto-4.0~34185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b157ac5590a06405fd5622c7cf7c51c0a2d3cc5e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git multilib.conf: Use BASELIB to set baselib, not hardcode the value (From OE-Core rev: 1a97cab9d4856e8948025ce6f406c76a2732ec36) Signed-off-by: Richard Purdie --- diff --git a/meta/conf/multilib.conf b/meta/conf/multilib.conf index 97b53eccf77..f86cff068e0 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"