recipe: anchor regexps in COMPATIBLE_MACHINE

* bitbake is using re.match, so raspberrypi actually matches with anything
  ^raspberrypi.* which currently works, but it will also match with hypothetical
  raspberrypi-is-no-more-this-is-banana-now MACHINE which isn't intended by
  this COMPATIBLE_MACHINE.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Martin Jansa
2017-07-26 12:49:51 +02:00
parent ab4006bb2e
commit 56d0bdb5fe
11 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
inherit setuptools
COMPATIBLE_MACHINE = "raspberrypi"
COMPATIBLE_MACHINE = "^rpi$"
RDEPENDS_${PN} = "\
python-logging \