summaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs_ipk.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-24 17:01:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-26 11:29:45 +0100
commit93ec1e347cbba47cb35137047ac2ef8875a1c5d1 (patch)
tree4a677d414583daf49f8d029bea7a320bb3856751 /meta/classes/rootfs_ipk.bbclass
parent388318706699250b7f48c5692ba81f0595b176bd (diff)
downloadpoky-93ec1e347cbba47cb35137047ac2ef8875a1c5d1.tar.gz
classes: Remove references to _remove in function names since this may become a bitbake keyword
There is a good chance we might want to support a bitbake operator "_remove" which works in a similar way to _append and _prepend. As such, we can't use those keywords in function or variable names. (From OE-Core rev: 491fde8cd3fd493f9fec2fd434fe1be547f66148) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rootfs_ipk.bbclass')
-rw-r--r--meta/classes/rootfs_ipk.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass
index c9650cb6c7..a37ab14df7 100644
--- a/meta/classes/rootfs_ipk.bbclass
+++ b/meta/classes/rootfs_ipk.bbclass
@@ -136,7 +136,7 @@ rootfs_install_packages() {
136 opkg-cl ${OPKG_ARGS} install `cat $1` 136 opkg-cl ${OPKG_ARGS} install `cat $1`
137} 137}
138 138
139rootfs_remove_packages() { 139rootfs_uninstall_packages() {
140 opkg-cl ${OPKG_ARGS} --force-depends remove $@ 140 opkg-cl ${OPKG_ARGS} --force-depends remove $@
141} 141}
142 142