diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-08-02 11:01:05 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-08-12 10:08:24 -0700 |
commit | 59d36c9832702989bfcca8a5af29fb2dff01efcc (patch) | |
tree | b2b07d98cb22bc5241cde7403b6a15d99821318e /recipes-multimedia/imx-parser | |
parent | 72f59d35816cd2be6159013e4d96d03abf7f1c4b (diff) | |
download | meta-freescale-59d36c9832702989bfcca8a5af29fb2dff01efcc.tar.gz |
layer: Convert to new override syntax
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes-multimedia/imx-parser')
-rw-r--r-- | recipes-multimedia/imx-parser/imx-parser_4.5.7.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes-multimedia/imx-parser/imx-parser_4.5.7.bb b/recipes-multimedia/imx-parser/imx-parser_4.5.7.bb index 0a3bb6a2..61a7a260 100644 --- a/recipes-multimedia/imx-parser/imx-parser_4.5.7.bb +++ b/recipes-multimedia/imx-parser/imx-parser_4.5.7.bb | |||
@@ -9,9 +9,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=cf3f9b8d09bc3926b1004ea71f7a248a" | |||
9 | 9 | ||
10 | # For backwards compatibility | 10 | # For backwards compatibility |
11 | PROVIDES += "libfslparser" | 11 | PROVIDES += "libfslparser" |
12 | RREPLACES_${PN} = "libfslparser" | 12 | RREPLACES:${PN} = "libfslparser" |
13 | RPROVIDES_${PN} = "libfslparser" | 13 | RPROVIDES:${PN} = "libfslparser" |
14 | RCONFLICTS_${PN} = "libfslparser" | 14 | RCONFLICTS:${PN} = "libfslparser" |
15 | 15 | ||
16 | SRC_URI = "${FSL_MIRROR}/${BPN}-${PV}.bin;fsl-eula=true" | 16 | SRC_URI = "${FSL_MIRROR}/${BPN}-${PV}.bin;fsl-eula=true" |
17 | SRC_URI[md5sum] = "dd34e4e2d1384af27d370964ebbd05fd" | 17 | SRC_URI[md5sum] = "dd34e4e2d1384af27d370964ebbd05fd" |
@@ -31,13 +31,13 @@ python __set_insane_skip() { | |||
31 | # the source we cannot fix it. Disable the insane check for now. | 31 | # the source we cannot fix it. Disable the insane check for now. |
32 | # FIXME: gst-fsl-plugin looks for the .so files so we need to deploy those | 32 | # FIXME: gst-fsl-plugin looks for the .so files so we need to deploy those |
33 | for p in d.getVar('PACKAGES').split(): | 33 | for p in d.getVar('PACKAGES').split(): |
34 | d.setVar("INSANE_SKIP_%s" % p, "ldflags dev-so textrel") | 34 | d.setVar("INSANE_SKIP:%s" % p, "ldflags dev-so textrel") |
35 | } | 35 | } |
36 | 36 | ||
37 | do_package_qa[prefuncs] += "__set_insane_skip" | 37 | do_package_qa[prefuncs] += "__set_insane_skip" |
38 | 38 | ||
39 | # FIXME: gst-fsl-plugin looks for the .so files so we need to deploy those | 39 | # FIXME: gst-fsl-plugin looks for the .so files so we need to deploy those |
40 | FILES_${PN} += "${libdir}/imx-mm/*/*${SOLIBS} ${libdir}/imx-mm/*/*${SOLIBSDEV}" | 40 | FILES:${PN} += "${libdir}/imx-mm/*/*${SOLIBS} ${libdir}/imx-mm/*/*${SOLIBSDEV}" |
41 | 41 | ||
42 | INHIBIT_SYSROOT_STRIP = "1" | 42 | INHIBIT_SYSROOT_STRIP = "1" |
43 | 43 | ||