diff options
Diffstat (limited to 'meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb')
-rw-r--r-- | meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb b/meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb index 9fd91114d7..4b57957cfc 100644 --- a/meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb +++ b/meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb | |||
@@ -13,11 +13,11 @@ SRC_URI = "${DEBIAN_MIRROR}/main/c/${BPN}/${BPN}_${PV}.orig.tar.gz \ | |||
13 | file://0001-genisoimage-Add-missing-extern-definition.patch \ | 13 | file://0001-genisoimage-Add-missing-extern-definition.patch \ |
14 | file://0001-add-new-option-eltorito-platform.patch \ | 14 | file://0001-add-new-option-eltorito-platform.patch \ |
15 | file://0001-genisoimage-Add-checksum.h-and-md5.h-for-function-pr.patch \ | 15 | file://0001-genisoimage-Add-checksum.h-and-md5.h-for-function-pr.patch \ |
16 | file://fix-incompatible-pointer-type-error.patch \ | ||
16 | " | 17 | " |
17 | SRC_URI:append:class-nativesdk = " \ | 18 | SRC_URI:append:class-nativesdk = " \ |
18 | file://0001-install-netscsid-to-bin-for-nativesdk.patch \ | 19 | file://0001-install-netscsid-to-bin-for-nativesdk.patch \ |
19 | " | 20 | " |
20 | SRC_URI[md5sum] = "efe08e2f3ca478486037b053acd512e9" | ||
21 | SRC_URI[sha256sum] = "d1c030756ecc182defee9fe885638c1785d35a2c2a297b4604c0e0dcc78e47da" | 21 | SRC_URI[sha256sum] = "d1c030756ecc182defee9fe885638c1785d35a2c2a297b4604c0e0dcc78e47da" |
22 | 22 | ||
23 | inherit cmake | 23 | inherit cmake |
@@ -62,3 +62,8 @@ do_install:append() { | |||
62 | } | 62 | } |
63 | 63 | ||
64 | BBCLASSEXTEND = "native nativesdk" | 64 | BBCLASSEXTEND = "native nativesdk" |
65 | |||
66 | # http://errors.yoctoproject.org/Errors/Details/766905/ | ||
67 | # cdrkit/1.1.11/cdrkit-1.1.11/genisoimage/eltorito.c:399:41: error: passing argument 1 of 'set_721' from incompatible pointer type [-Wincompatible-pointer-types] | ||
68 | # cdrkit/1.1.11/cdrkit-1.1.11/genisoimage/eltorito.c:422:25: error: passing argument 1 of 'set_721' from incompatible pointer type [-Wincompatible-pointer-types] | ||
69 | CFLAGS += "-Wno-error=incompatible-pointer-types" | ||