diff options
-rw-r--r-- | meta/recipes-core/jpeg/jpeg_8b.bb | 13 |
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" | |||
14 | DEPENDS = "libtool-cross" | 14 | DEPENDS = "libtool-cross" |
15 | DEPENDS_virtclass-native = "libtool-native" | 15 | DEPENDS_virtclass-native = "libtool-native" |
16 | 16 | ||
17 | PR = "r0" | 17 | PR = "r1" |
18 | 18 | ||
19 | SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \ | 19 | SRC_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 | |||
45 | FILES_jpeg-tools = "${bindir}/*" | 45 | FILES_jpeg-tools = "${bindir}/*" |
46 | 46 | ||
47 | BBCLASSEXTEND = "native" | 47 | BBCLASSEXTEND = "native" |
48 | |||
49 | pkg_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 | } | ||