Message ID | 20240205102910.3778516-1-kexin.hao@windriver.com |
---|---|
State | New |
Headers | show |
Series | [meta-raspberrypi] rpidistro-ffmpeg: Fix old override syntax | expand |
Thanks for this, Kevin. Could you push your patch as a GitHub merge request? That would help take advantage of the existing CI infrastructure.
On Tue, Feb 13, 2024 at 12:23:43PM +0000, Andrei Gherzan wrote: > CAUTION: This email comes from a non Wind River email account! > Do not click links or open attachments unless you recognize the sender and know > the content is safe. > Thanks for this, Kevin. Could you push your patch as a GitHub merge request? > That would help take advantage of the existing CI infrastructure. Done. Thanks, Kevin
diff --git a/recipes-multimedia/rpidistro-ffmpeg/rpidistro-ffmpeg_4.3.4.bb b/recipes-multimedia/rpidistro-ffmpeg/rpidistro-ffmpeg_4.3.4.bb index a4a7f90edfc3..5a8ff8fa9c96 100644 --- a/recipes-multimedia/rpidistro-ffmpeg/rpidistro-ffmpeg_4.3.4.bb +++ b/recipes-multimedia/rpidistro-ffmpeg/rpidistro-ffmpeg_4.3.4.bb @@ -23,9 +23,9 @@ LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02" # Build fails when thumb is enabled: https://bugzilla.yoctoproject.org/show_bug.cgi?id=7717 -ARM_INSTRUCTION_SET_armv4 = "arm" -ARM_INSTRUCTION_SET_armv5 = "arm" -ARM_INSTRUCTION_SET_armv6 = "arm" +ARM_INSTRUCTION_SET:armv4 = "arm" +ARM_INSTRUCTION_SET:armv5 = "arm" +ARM_INSTRUCTION_SET:armv6 = "arm" # Should be API compatible with libav (which was a fork of ffmpeg) # libpostproc was previously packaged from a separate recipe PROVIDES = "ffmpeg libav libpostproc"
Signed-off-by: Kevin Hao <kexin.hao@windriver.com> --- .../rpidistro-ffmpeg/rpidistro-ffmpeg_4.3.4.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)