diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-08 16:10:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-09 10:50:54 +0000 |
commit | e478550c8cd889f12e336e268e9e3b30827bf840 (patch) | |
tree | 5bfc7ebdc09e7f0a8159080ee4891de77dba5d90 /meta/recipes-graphics | |
parent | 15376e5ff35367c1b40941d10e7b19302058a53e (diff) | |
download | openembedded-core-e478550c8cd889f12e336e268e9e3b30827bf840.tar.gz openembedded-core-e478550c8cd889f12e336e268e9e3b30827bf840.tar.bz2 openembedded-core-e478550c8cd889f12e336e268e9e3b30827bf840.zip |
openssl/fontconfig/bzip2: Use relative symlinks instead of absolute ones (using a new class)
Absolute path symlinks are a bit of a pain for sstate and the native versions
of these recipes currently contain broken symlinks as a result. There are
only a small number of problematic recipes, at least in OE-Core, namely the
three here.
Rather than trying to make sstate handle this magically, which turns out to
be a harder problem than you'd first realise, simply make the symlinks relative
early in the process and avoid all the problems.
The alternative is adding new complexity to sstate which we could really
do without as without the complexity, you can't always tell where the
absolute symlink is relative to (due to prefixes used for native sstate).
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb index 8616154c61..95b066ce46 100644 --- a/meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb +++ b/meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb @@ -37,7 +37,7 @@ RREPLACES_fontconfig-utils = "libfontconfig-utils" RCONFLICTS_fontconfig-utils = "libfontconfig-utils" DEBIAN_NOAUTONAME_fontconfig-utils = "1" -inherit autotools pkgconfig +inherit autotools pkgconfig relative_symlinks FONTCONFIG_CACHE_DIR ?= "${localstatedir}/cache/fontconfig" |