From: Ross Burton Date: Thu, 7 Jan 2016 23:32:23 +0000 (+0000) Subject: conf/distro/poky-tiny: correctly disable python in opkg-utils X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17d0862ebc3777d148e62fe9b69225eb4de2dfe0;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git conf/distro/poky-tiny: correctly disable python in opkg-utils opkg-utils has more than one PACKAGECONFIG option enabled by default so wiping out PACKAGECONFIG entirely breaks poky-tiny as then opkg-utils doesn't build an update-alternatives binary. Instead, use the _remove override to selectively disable Python in opkg-utils, leaving update-alternatives present. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf index fcf0a1ec0c6..ee84d4039d9 100644 --- a/meta-yocto/conf/distro/poky-tiny.conf +++ b/meta-yocto/conf/distro/poky-tiny.conf @@ -140,4 +140,4 @@ PNBLACKLIST[core-image-x11] = "not buildable with poky-tiny" PNBLACKLIST[core-image-weston] = "not buildable with poky-tiny" # Disable python usage in opkg-utils since it won't build with tiny config -PACKAGECONFIG_pn-opkg-utils = "" +PACKAGECONFIG_remove_pn-opkg-utils = "python"