summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-core/jpeg/jpeg_8b.bb13
1 files changed, 12 insertions, 1 deletions
diff --git a/meta/recipes-core/jpeg/jpeg_8b.bb b/meta/recipes-core/jpeg/jpeg_8b.bb
index 8e2c24dd21..78fabf1efd 100644
--- a/meta/recipes-core/jpeg/jpeg_8b.bb
+++ b/meta/recipes-core/jpeg/jpeg_8b.bb
@@ -14,7 +14,7 @@ PRIORITY = "required"
14DEPENDS = "libtool-cross" 14DEPENDS = "libtool-cross"
15DEPENDS_virtclass-native = "libtool-native" 15DEPENDS_virtclass-native = "libtool-native"
16 16
17PR = "r0" 17PR = "r1"
18 18
19SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \ 19SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \
20 file://debian-libjpeg7_7-1.diff;patch=1" 20 file://debian-libjpeg7_7-1.diff;patch=1"
@@ -45,3 +45,14 @@ DESCRIPTION_jpeg-tools = "The jpeg-tools package includes the client programs fo
45FILES_jpeg-tools = "${bindir}/*" 45FILES_jpeg-tools = "${bindir}/*"
46 46
47BBCLASSEXTEND = "native" 47BBCLASSEXTEND = "native"
48
49pkg_postinst_${PN}_poky-lsb () {
50 if [ "$D" = "" ]; then
51 if [ ! -e ${libdir}/libjpeg.so.62 ]; then
52 JPEG=`find ${libdir} -type f -name libjpeg.so.\*.\*.\*`
53 ln -sf `basename $JPEG` ${libdir}/libjpeg.so.62
54 fi
55 else
56 exit 1
57 fi
58}