diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-24 17:46:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-24 22:18:00 +0000 |
commit | c38567894ebc31ac977f2bc89a076d0380bddcf8 (patch) | |
tree | e601c6ae2cc4b0db3b535133a9aaa2fc04d1e3c2 /meta | |
parent | 95b383781f875a0f10e5c1de039289bb89e421dd (diff) | |
download | openembedded-core-c38567894ebc31ac977f2bc89a076d0380bddcf8.tar.gz openembedded-core-c38567894ebc31ac977f2bc89a076d0380bddcf8.tar.bz2 openembedded-core-c38567894ebc31ac977f2bc89a076d0380bddcf8.zip |
bitbake.conf: We only care about the absolute value of baselib
The value of baselib can be constructed in several different ways
and from a sstate perspective we don't care how it was made up,
we only care what the final value is. This uses the new functionality
in bitbake to ensure we only include the value of baselib and not
any intermediate dependencies.
[YOCTO #1583]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/bitbake.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 458990924b..9ccf90add3 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -8,6 +8,7 @@ # Used by multilib code to change the library paths baselib = "${BASELIB}" +baselib[vardepvalue] = "${baselib}" BASELIB = "lib" BASELIB_powerpc64 = "lib64" |