[oe-commits] [openembedded-core] branch pyro updated: bitbake.conf: Add sdl-config to HOSTTOOLS if using host SDL

git at git.openembedded.org git at git.openembedded.org
Wed Jun 14 10:50:47 UTC 2017


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

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

The following commit(s) were added to refs/heads/pyro by this push:
     new ed5a602  bitbake.conf: Add sdl-config to HOSTTOOLS if using host SDL
ed5a602 is described below

commit ed5a602d3eb418beb2f9731fda96415ed16efff2
Author: Jonathan Liu <net147 at gmail.com>
AuthorDate: Thu Jun 1 22:15:52 2017 +1000

    bitbake.conf: Add sdl-config to HOSTTOOLS if using host SDL
    
    If ASSUME_PROVIDES contains libsdl-native, we need to add sdl-config
    to HOSTTOOLS to allow access to the host sdl-config.
    
    Signed-off-by: Jonathan Liu <net147 at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/conf/bitbake.conf | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 8e4f4bb..3ad905c 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -471,6 +471,9 @@ HOSTTOOLS += " \
 # Tools needed to run testimage runtime image testing
 HOSTTOOLS += "ip ping ps scp ssh stty"
 
+# Link to sdl-config if using host SDL
+HOSTTOOLS += "${@bb.utils.contains('ASSUME_PROVIDES', 'libsdl-native', 'sdl-config', '', d)}"
+
 # Link to these if present
 HOSTTOOLS_NONFATAL += "aws ccache gcc-ar gpg ld.bfd ld.gold nc sftp socat sudo"
 

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


More information about the Openembedded-commits mailing list