diff options
author | Ross Burton <ross.burton@intel.com> | 2016-01-07 23:32:23 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-12 15:35:27 +0000 |
commit | 96a34e7f847ad34deac520b78809e7dd82dbc59e (patch) | |
tree | e29c8eadb66bdf7d5e068836918c3d5417733209 /meta-yocto | |
parent | 1724ffd32d1c169a2de66f2cb88ba18c56da6146 (diff) | |
download | poky-96a34e7f847ad34deac520b78809e7dd82dbc59e.tar.gz |
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.
(From meta-yocto rev: 17d0862ebc3777d148e62fe9b69225eb4de2dfe0)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto')
-rw-r--r-- | meta-yocto/conf/distro/poky-tiny.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf index fcf0a1ec0c..ee84d4039d 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" | |||
140 | PNBLACKLIST[core-image-weston] = "not buildable with poky-tiny" | 140 | PNBLACKLIST[core-image-weston] = "not buildable with poky-tiny" |
141 | 141 | ||
142 | # Disable python usage in opkg-utils since it won't build with tiny config | 142 | # Disable python usage in opkg-utils since it won't build with tiny config |
143 | PACKAGECONFIG_pn-opkg-utils = "" | 143 | PACKAGECONFIG_remove_pn-opkg-utils = "python" |