diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-30 14:44:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-01 07:40:23 +0100 |
commit | 5f3773e84332e9100b8739adf4831269329e0033 (patch) | |
tree | 3fcb1bf805db1df47543922fe928c5ce7eaa149f /meta | |
parent | dae7c45fac1d877203f173842d43abc4883b808b (diff) | |
download | openembedded-core-5f3773e84332e9100b8739adf4831269329e0033.tar.gz openembedded-core-5f3773e84332e9100b8739adf4831269329e0033.tar.bz2 openembedded-core-5f3773e84332e9100b8739adf4831269329e0033.zip |
multilib.conf: Ensure MACHINE doesn't change target sigs
Sysroot paths (which happen to contain MACHINE) should not cause the signatures
to change every time MACHINE changes so exclude this from them.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/multilib.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/conf/multilib.conf b/meta/conf/multilib.conf index f867c8d283..50303fb5d6 100644 --- a/meta/conf/multilib.conf +++ b/meta/conf/multilib.conf @@ -24,3 +24,4 @@ OPKG_ARGS_append = " --force-maintainer --force-overwrite" # inside the multilib sysroot. Fix this by explicitly adding the MACHINE's # architecture-independent pkgconfig location to PKG_CONFIG_PATH. PKG_CONFIG_PATH .= ":${STAGING_DIR}/${MACHINE}${datadir}/pkgconfig" +PKG_CONFIG_PATH[vardepsexclude] = "MACHINE" |