diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-24 17:01:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-26 11:29:45 +0100 |
commit | 0fd70833f587bdad642dcd79413c611e29e9c1ad (patch) | |
tree | 28feaad9f1389439b06ffbc981935ac5768a6fdb /meta/classes/rootfs_rpm.bbclass | |
parent | f75b0ea75e33a99e791fbe90210e4ec56699bcad (diff) | |
download | tizen-distro-0fd70833f587bdad642dcd79413c611e29e9c1ad.tar.gz tizen-distro-0fd70833f587bdad642dcd79413c611e29e9c1ad.tar.bz2 tizen-distro-0fd70833f587bdad642dcd79413c611e29e9c1ad.zip |
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_rpm.bbclass')
-rw-r--r-- | meta/classes/rootfs_rpm.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass index 30b52d4da2..6c68ac89fb 100644 --- a/meta/classes/rootfs_rpm.bbclass +++ b/meta/classes/rootfs_rpm.bbclass @@ -178,7 +178,7 @@ rootfs_install_packages() { package_install_internal_rpm } -rootfs_remove_packages() { +rootfs_uninstall_packages() { rpm -e --nodeps --root=${IMAGE_ROOTFS} --dbpath=/var/lib/rpm\ --define='_cross_scriptlet_wrapper ${WORKDIR}/scriptlet_wrapper'\ --define='_tmppath /install/tmp' $@ |