From 4f563284655edc06e7f6510d1f68d45170e5f191 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 27 Aug 2019 18:05:37 -0700 Subject: [PATCH] src/meta-openembedded:libgpiod: nherit python3native unconditionally this recipe inherits python3native class conditionally, this condition depends on a given packageconfig, however inherit ${VAR} syntax requires VAR to be evaluated before inheriting it, therefore if someone appends python3 to packageconfig via a bbappend, then the packageconfig will become effective and add --enable-bindings-python to configure but inherit wont evaluate correctly since the expression adding to packageconfig PACKAGECONFIG_append = " python3" will be coming _after_ the inherit, and the builds will fail e.g. | ../../../libgpiod-1.3/bindings/python/gpiodmodule.c:8:10: fatal error: Python.h: No such file or directory | #include This will still mean that python3native is always inherited but the effective configure option will be --disable-bindings-python and that will do the right thing See. https://github.com/openembedded/meta-openembedded/issues/140 Signed-off-by: Khem Raj --- src/meta-openembedded | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meta-openembedded b/src/meta-openembedded index 2ebaa8df125..98625eb6c50 160000 --- a/src/meta-openembedded +++ b/src/meta-openembedded @@ -1 +1 @@ -Subproject commit 2ebaa8df1257389161d0bee9e553c28f63e52005 +Subproject commit 98625eb6c501d74d18e728a8b34e9719c7011f1b