diff options
-rw-r--r-- | pym/portage/dbapi/vartree.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 86c26baf9..02b148417 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1305,7 +1305,14 @@ class dblink(object): "The problem occurred while executing " + \ ("the ebuild located at '%s'. " % myebuildpath) + \ "If necessary, manually remove the ebuild " + \ - "in order to skip the execution of removal phases." + "and/or the environment.bz2 file which " + \ + "is located in the same directory. Removal " + \ + "of the environment.bz2 file will cause " + \ + "the ebuild to be sourced and eclasses " + \ + "from the current portage tree will be used " + \ + "when necessary. Removal of " + \ + "the ebuild will cause the execution of " + \ + "removal phases to be skipped entirely." from portage.elog.messages import eerror from textwrap import wrap for l in wrap(msg, 72): |