[OE-core] [PATCH] bitbake.conf: Fix typo on variable name

Ricardo Ribalda Delgado ricardo.ribalda at gmail.com
Tue Jun 20 14:23:39 UTC 2017


The variable is called ASSUME_PROVIDED, not ASSUME_PROVIDES.

Without this patch sdl-config is not properly linked into
build/tmp/hosttools and bitbake fails to find it.

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda at gmail.com>
---
 meta/conf/bitbake.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 80baec8d40d2..aa54e9266ba8 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -472,7 +472,7 @@ HOSTTOOLS += " \
 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)}"
+HOSTTOOLS += "${@bb.utils.contains('ASSUME_PROVIDED', '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"
-- 
2.11.0




More information about the Openembedded-core mailing list