[oe-commits] [openembedded-core] 02/47: sanity.bbclass: remove ASSUME_PROVIDED checks that can't succeed

git at git.openembedded.org git at git.openembedded.org
Thu Jul 6 13:39:16 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit a8d8b0d9e1c2346d5a314ed0a7bf5be66044a51d
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Wed Jun 28 15:38:36 2017 +0100

    sanity.bbclass: remove ASSUME_PROVIDED checks that can't succeed
    
    qemu-arm and libsdl-native are not in HOSTTOOLS, so there's no point in
    checking that they're on PATH.
    
    Also qemu uses pkg-config to find SDL, so libsdl-native isn't required.
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/sanity.bbclass | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index e8064ac..ea5f215 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -657,14 +657,6 @@ def check_sanity_version_change(status, d):
     if "diffstat-native" not in assume_provided:
         status.addresult('Please use ASSUME_PROVIDED +=, not ASSUME_PROVIDED = in your local.conf\n')
 
-    if "qemu-native" in assume_provided:
-        if not check_app_exists("qemu-arm", d):
-            status.addresult("qemu-native was in ASSUME_PROVIDED but the QEMU binaries (qemu-arm) can't be found in PATH")
-
-    if "libsdl-native" in assume_provided:
-        if not check_app_exists("sdl-config", d):
-            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.")
-
     (result, message) = check_gcc_march(d)
     if result and message:
         status.addresult("Your gcc version is older than 4.5, please add the following param to local.conf\n \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list