diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 17:43:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 17:48:34 +0100 |
commit | 22001ba163e80b114212580279339acd15fa7298 (patch) | |
tree | 0d30f98b755dcb95a20880182dc4c0d074390e05 /meta/conf | |
parent | ce1e7fcc60276040477c1d5e3129e029bb9f204b (diff) | |
download | openembedded-core-contrib-22001ba163e80b114212580279339acd15fa7298.tar.gz |
multilib.conf: Ensure sstate checksums don't change when using this include
When enabling multilib.conf, the world was rebuilding due to changes in the
pkg-config search path. This doesn't matter so exclude it from the checksums.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/multilib.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/multilib.conf b/meta/conf/multilib.conf index 50303fb5d6f..1403a034a6d 100644 --- a/meta/conf/multilib.conf +++ b/meta/conf/multilib.conf @@ -24,4 +24,5 @@ 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" +PKG_CONFIG_PATH[vardepsexclude] = "MACHINE datadir STAGING_DIR" +PKG_CONFIG_PATH[vardepvalueexclude] = ":${STAGING_DIR}/${MACHINE}${datadir}/pkgconfig" |