summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/sanity.bbclass4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 989bdcd7cd..4b42b17145 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -550,6 +550,10 @@ def check_sanity_version_change(status, d):
550 if not check_app_exists("qemu-arm", d): 550 if not check_app_exists("qemu-arm", d):
551 status.addresult("qemu-native was in ASSUME_PROVIDED but the QEMU binaries (qemu-arm) can't be found in PATH") 551 status.addresult("qemu-native was in ASSUME_PROVIDED but the QEMU binaries (qemu-arm) can't be found in PATH")
552 552
553 if "libsdl-native" in assume_provided:
554 if not check_app_exists("sdl-config", d):
555 status.addresult("libsdl-native is set to be ASSUME_PROVIDED but sdl-config can't be found in PATH. Please either install it, or configure qemu not to require sdl.")
556
553 (result, message) = check_gcc_march(d) 557 (result, message) = check_gcc_march(d)
554 if result and message: 558 if result and message:
555 status.addresult("Your gcc version is older than 4.5, please add the following param to local.conf\n \ 559 status.addresult("Your gcc version is older than 4.5, please add the following param to local.conf\n \