diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-04-28 17:33:38 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-04-28 17:33:38 +0000 |
commit | 0165f306e1d5b9c9ad2688c1f30b0f37c09dba87 (patch) | |
tree | 490205211dd03b65e6a66cc3194eaf0b55ea2bb7 | |
parent | a80693f93d001731a66654bd860aa8cacc65b825 (diff) | |
download | portage-0165f306e1d5b9c9ad2688c1f30b0f37c09dba87.tar.gz portage-0165f306e1d5b9c9ad2688c1f30b0f37c09dba87.tar.bz2 portage-0165f306e1d5b9c9ad2688c1f30b0f37c09dba87.zip |
For bug #211833, be explicit that the pkg_prerm() and pkg_postrm() removal
phases are the ones that are skipped.
svn path=/main/trunk/; revision=10024
-rw-r--r-- | pym/portage/dbapi/vartree.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 7a2dae37d..76d7c05ea 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1328,7 +1328,8 @@ class dblink(object): "from the current portage tree will be used " + \ "when necessary. Removal of " + \ "the ebuild file will cause the " + \ - "removal phases to be skipped entirely." + "pkg_prerm() and pkg_postrm() removal " + \ + "phases to be skipped entirely." msg_lines.extend(wrap(msg, 72)) from portage.elog.messages import eerror for l in msg_lines: |