diff mbox series

[meta-oe] jasper: Fix install conflict when enable multilib.

Message ID 1703574033-12738-1-git-send-email-wangmy@fujitsu.com
State Accepted
Headers show
Series [meta-oe] jasper: Fix install conflict when enable multilib. | expand

Commit Message

Mingyu Wang (Fujitsu) Dec. 26, 2023, 7 a.m. UTC
From: Wang Mingyu <wangmy@fujitsu.com>

Error: Transaction test error:
  file /usr/include/jasper/jas_config.h conflicts between attempted installs of lib32-jasper-dev-4.1.1-r0.armv7ahf_neon and jasper-dev-4.1.1-r0.cortexa57

The differences between the two files are as follows:
@@ -44,10 +44,10 @@
 /* #undef JAS_HAVE_INT128_T */

 #define JAS_SIZEOF_INT 4
-#define JAS_SIZEOF_LONG 4
+#define JAS_SIZEOF_LONG 8
 #define JAS_SIZEOF_LLONG 8
-#define JAS_SIZEOF_SIZE_T 4
-#define JAS_SIZEOF_SSIZE_T 4
+#define JAS_SIZEOF_SIZE_T 8
+#define JAS_SIZEOF_SSIZE_T 8

 #define JAS_HAVE_FCNTL_H
 /* #undef JAS_HAVE_IO_H */

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-oe/recipes-graphics/jasper/jasper_4.1.1.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Khem Raj Dec. 31, 2023, 12:38 a.m. UTC | #1
On Tue, 26 Dec 2023 15:00:33 +0800, wangmy@fujitsu.com wrote:
> Error: Transaction test error:
>   file /usr/include/jasper/jas_config.h conflicts between attempted installs of lib32-jasper-dev-4.1.1-r0.armv7ahf_neon and jasper-dev-4.1.1-r0.cortexa57
> 
> The differences between the two files are as follows:
> @@ -44,10 +44,10 @@
>  /* #undef JAS_HAVE_INT128_T */
> 
> [...]

Applied, thanks!

[1/1] jasper: Fix install conflict when enable multilib.
      commit: 85360acc4d93e135a647bf4819b9ba524df3cdf0

Best regards,
diff mbox series

Patch

diff --git a/meta-oe/recipes-graphics/jasper/jasper_4.1.1.bb b/meta-oe/recipes-graphics/jasper/jasper_4.1.1.bb
index 14f50d0b2..5281980ec 100644
--- a/meta-oe/recipes-graphics/jasper/jasper_4.1.1.bb
+++ b/meta-oe/recipes-graphics/jasper/jasper_4.1.1.bb
@@ -10,7 +10,7 @@  CVE_STATUS[CVE-2015-8751] = "fixed-version: The CPE in the NVD database doesn't
 
 S = "${WORKDIR}/git"
 
-inherit cmake
+inherit cmake multilib_header
 
 do_configure:prepend() {
 	JAS_STDC_VERSION="$(echo __STDC_VERSION__ | ${CPP} -E -P -)"
@@ -29,5 +29,6 @@  do_install:append() {
     chrpath -d ${D}${bindir}/imginfo
     chrpath -d ${D}${bindir}/imgcmp
     chrpath -d ${D}${libdir}/libjasper.so.*
+    oe_multilib_header jasper/jas_config.h
 }