diff options
-rw-r--r-- | meta/classes/base.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index f0c358ea32..091e965c1d 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -379,7 +379,7 @@ python () { | |||
379 | import re | 379 | import re |
380 | this_host = d.getVar('HOST_SYS', 1) | 380 | this_host = d.getVar('HOST_SYS', 1) |
381 | if not re.match(need_host, this_host): | 381 | if not re.match(need_host, this_host): |
382 | raise bb.parse.SkipPackage("incompatible with host %s" % this_host) | 382 | raise bb.parse.SkipPackage("incompatible with host %s (not in COMPATIBLE_HOST)" % this_host) |
383 | 383 | ||
384 | need_machine = d.getVar('COMPATIBLE_MACHINE', 1) | 384 | need_machine = d.getVar('COMPATIBLE_MACHINE', 1) |
385 | if need_machine: | 385 | if need_machine: |
@@ -388,7 +388,7 @@ python () { | |||
388 | if this_machine and not re.match(need_machine, this_machine): | 388 | if this_machine and not re.match(need_machine, this_machine): |
389 | this_soc_family = d.getVar('SOC_FAMILY', 1) | 389 | this_soc_family = d.getVar('SOC_FAMILY', 1) |
390 | if (this_soc_family and not re.match(need_machine, this_soc_family)) or not this_soc_family: | 390 | if (this_soc_family and not re.match(need_machine, this_soc_family)) or not this_soc_family: |
391 | raise bb.parse.SkipPackage("incompatible with machine %s" % this_machine) | 391 | raise bb.parse.SkipPackage("incompatible with machine %s (not in COMPATIBLE_MACHINE)" % this_machine) |
392 | 392 | ||
393 | 393 | ||
394 | dont_want_license = d.getVar('INCOMPATIBLE_LICENSE', 1) | 394 | dont_want_license = d.getVar('INCOMPATIBLE_LICENSE', 1) |