summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/jpeg/files
diff options
context:
space:
mode:
authorChangqing Li <changqing.li@windriver.com>2018-08-28 13:27:25 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-29 10:42:48 +0100
commitc274e1c8d830f6a0cf6c78264b6527b65ef691ee (patch)
treed5787c5e3d97af6425f193a54e2fad9a308bb1ad /meta/recipes-graphics/jpeg/files
parent0dc9785c08939f3daa9d66741a4bb39f9fcc5fc8 (diff)
downloadpoky-c274e1c8d830f6a0cf6c78264b6527b65ef691ee.tar.gz
libjpeg-turbo: Upgrade 1.5.3 -> 2.0.0
License-Update: Copyright Year Update 1. Upgrade from 1.5.3 -> 2.0.0, change from autools to cmake 2. Add a patch for fix package qa error 3. remove --with-build-date since 2.0.0 not support config build date (From OE-Core rev: 83f206d68e9ae9ed21398f5cfde6f911065fbce6) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/jpeg/files')
-rw-r--r--meta/recipes-graphics/jpeg/files/0001-libjpeg-turbo-fix-package_qa-error.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-graphics/jpeg/files/0001-libjpeg-turbo-fix-package_qa-error.patch b/meta/recipes-graphics/jpeg/files/0001-libjpeg-turbo-fix-package_qa-error.patch
new file mode 100644
index 0000000000..44c2c768b2
--- /dev/null
+++ b/meta/recipes-graphics/jpeg/files/0001-libjpeg-turbo-fix-package_qa-error.patch
@@ -0,0 +1,32 @@
1From 0a24f03a67425a7b58b3fd40d965c0c9801ae7a1 Mon Sep 17 00:00:00 2001
2From: Changqing Li <changqing.li@windriver.com>
3Date: Mon, 27 Aug 2018 16:10:55 +0800
4Subject: [PATCH] libjpeg-turbo: fix package_qa error
5
6Fix package qa errors like below:
7libjpeg.so.62.3.0 contains probably-redundant RPATH /usr/lib [useless-rpaths]
8usr/bin/cjpeg contains probably-redundant RPATH /usr/lib
9
10Upstream-Status: Inappropriate[oe-specific]
11
12Signed-off-by: Changqing Li <changqing.li@windriver.com>
13---
14 CMakeLists.txt | 2 --
15 1 file changed, 2 deletions(-)
16
17diff --git a/CMakeLists.txt b/CMakeLists.txt
18index 1719522..682cef1 100644
19--- a/CMakeLists.txt
20+++ b/CMakeLists.txt
21@@ -109,8 +109,6 @@ endif()
22
23 include(cmakescripts/GNUInstallDirs.cmake)
24
25-set(CMAKE_INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR})
26-
27 macro(report_directory var)
28 if(CMAKE_INSTALL_${var} STREQUAL CMAKE_INSTALL_FULL_${var})
29 message(STATUS "CMAKE_INSTALL_${var} = ${CMAKE_INSTALL_${var}}")
30--
312.7.4
32