diff options
author | Jan-Simon Moeller <dl9pf@gmx.de> | 2020-05-21 16:07:04 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-22 17:07:44 +0100 |
commit | 3c28c19791bfce1b099fe5b3159c59a034ffe5d1 (patch) | |
tree | d2960ad22c17c29f4b272e864f78943d1c972fc4 | |
parent | df1e1dc92ea7a76a1949a8e11a421f2a21681901 (diff) | |
download | poky-3c28c19791bfce1b099fe5b3159c59a034ffe5d1.tar.gz |
file: add bzip2-replacement-native to DEPENDS to fix sstate issue
file-native when built on a Debian 10 host will embed a dependency to
'libbz2.so.1.0' (instead of 'libbz2.so.1'). This can cause issues
when sharing the sstate between hosts e.g.:
recipe-sysroot-native/usr/lib/rpm/rpmdeps:
error while loading shared libraries: libbz2.so.1.0: \
cannot open shared object file: No such file or directory
To avoid this situation, let's add the bzip2-replacement-native to the
file recipe's DEPENDS_class-native .
Details in https://bugzilla.yoctoproject.org/show_bug.cgi?id=13915 .
(From OE-Core rev: 4a996574464028bd5d57b90920d0887d1a81e9e9)
Signed-off-by: Jan-Simon Moeller <dl9pf@gmx.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/file/file_5.38.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/file/file_5.38.bb b/meta/recipes-devtools/file/file_5.38.bb index 007db4790d..48cf8ab549 100644 --- a/meta/recipes-devtools/file/file_5.38.bb +++ b/meta/recipes-devtools/file/file_5.38.bb | |||
@@ -9,7 +9,7 @@ LICENSE = "BSD-2-Clause" | |||
9 | LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=0251eaec1188b20d9a72c502ecfdda1b" | 9 | LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=0251eaec1188b20d9a72c502ecfdda1b" |
10 | 10 | ||
11 | DEPENDS = "file-replacement-native" | 11 | DEPENDS = "file-replacement-native" |
12 | DEPENDS_class-native = "" | 12 | DEPENDS_class-native = "bzip2-replacement-native" |
13 | 13 | ||
14 | SRC_URI = "git://github.com/file/file.git" | 14 | SRC_URI = "git://github.com/file/file.git" |
15 | 15 | ||