summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-11-28 05:53:11 +0000
committerZac Medico <zmedico@gentoo.org>2007-11-28 05:53:11 +0000
commitbbafb0cfaee0b223be83c352c1ced58b04f76a9e (patch)
tree6415048b1ce8ce19bcf6f7848ffe3e8c5242f09c
parent7543cee72cb19b53b5f9698fe9711eb70b6f872b (diff)
downloadportage-bbafb0cfaee0b223be83c352c1ced58b04f76a9e.tar.gz
portage-bbafb0cfaee0b223be83c352c1ced58b04f76a9e.tar.bz2
portage-bbafb0cfaee0b223be83c352c1ced58b04f76a9e.zip
Disable PORTAGE_PACKAGE_EMPTY_ABORT by default since
the scrollkeeper-9999 upgrade will trigger a false positive. Thanks to leio for reporting. (trunk r8724) svn path=/main/branches/2.1.2/; revision=8725
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index e4e3dca7e..9e14be1b6 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -8424,7 +8424,7 @@ class dblink:
# If there are no files to merge, and an installed package in the same
# slot has files, it probably means that something went wrong.
- if self.settings.get("PORTAGE_PACKAGE_EMPTY_ABORT") != "0" and \
+ if self.settings.get("PORTAGE_PACKAGE_EMPTY_ABORT") == "1" and \
not myfilelist and others_in_slot:
installed_files = None
for other_dblink in others_in_slot: