diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2019-06-25 14:45:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-27 12:20:36 +0100 |
commit | 0729bda0241c7e77da7a7d339a3c0f1bf6f12cd5 (patch) | |
tree | d434c8133f0be96f407984a70c9946265939a96a | |
parent | bd7860577ac9736f3224f0b0687eb4178076bfff (diff) | |
download | poky-0729bda0241c7e77da7a7d339a3c0f1bf6f12cd5.tar.gz |
target-sdk-provides-dummy: add libperl.so.5 64bit
With postgresql added to IMAGE_INSTALL, we will get the following
error when building for 64bit BSPs.
Problem: package postgresql-11.3-r0.corei7_64 requires libperl.so.5()(64bit), but none of the providers can be installed
A previous patch has added libperl.so.5 to DUMMY_PROVIDES, but this
is not enough. Because for 64bit BSP, it should also provide libperl.so.5()(64bit).
(From OE-Core rev: ae1414fcbe41a70a56021c4d240976dae0adad33)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/meta/target-sdk-provides-dummy.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/target-sdk-provides-dummy.bb b/meta/recipes-core/meta/target-sdk-provides-dummy.bb index b5e8c0f034..c33cb80321 100644 --- a/meta/recipes-core/meta/target-sdk-provides-dummy.bb +++ b/meta/recipes-core/meta/target-sdk-provides-dummy.bb | |||
@@ -47,6 +47,7 @@ DUMMYPROVIDES = "\ | |||
47 | /usr/bin/env \ | 47 | /usr/bin/env \ |
48 | /usr/bin/perl \ | 48 | /usr/bin/perl \ |
49 | libperl.so.5 \ | 49 | libperl.so.5 \ |
50 | libperl.so.5()(64bit) \ | ||
50 | pkgconfig \ | 51 | pkgconfig \ |
51 | pkgconfig-dev \ | 52 | pkgconfig-dev \ |
52 | pkgconfig-src \ | 53 | pkgconfig-src \ |