rpidistro-vlc,rpidistro-ffmpeg: update COMPATIBLE_HOST regex

Remove the single quotes from the
COMPATIBLE_HOST variable regex as it appears
to make expression invalid. Thus, leading to

ERROR: Nothing PROVIDES 'rpidistro-ffmpeg'
rpidistro-ffmpeg was skipped: incompatible with host arm-*-gnueabi (not in COMPATIBLE_HOST)

Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
Vincent Davis Jr 2022-12-01 22:45:23 -06:00 committed by Andrei Gherzan
parent 93dadf336c
commit 4946b8d538
2 changed files with 2 additions and 2 deletions

View File

@ -154,6 +154,6 @@ FILES:${PN}-staticdev += "\
# Only enable it for rpi class of machines
COMPATIBLE_HOST = "null"
COMPATIBLE_HOST:rpi = "'(.*)'"
COMPATIBLE_HOST:rpi = "(.*)"
INSANE_SKIP:${PN} = "dev-so"

View File

@ -190,5 +190,5 @@ INSANE_SKIP:${MLPREFIX}libpostproc = "textrel"
# Only enable it for rpi class of machines
COMPATIBLE_HOST = "null"
COMPATIBLE_HOST:rpi = "'(.*)'"
COMPATIBLE_HOST:rpi = "(.*)"