summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-12-04 22:21:14 +0000
committerZac Medico <zmedico@gentoo.org>2006-12-04 22:21:14 +0000
commit669eff5e9d39d4987bf73c4f84055a163e7b08e4 (patch)
tree0ce96c76514e7cd5c8348511796169450323f26b /bin
parentFor bug #157134, make `emerge --digest` automatically reload the config with ... (diff)
downloadportage-multirepo-669eff5e9d39d4987bf73c4f84055a163e7b08e4.tar.gz
portage-multirepo-669eff5e9d39d4987bf73c4f84055a163e7b08e4.tar.bz2
portage-multirepo-669eff5e9d39d4987bf73c4f84055a163e7b08e4.zip
Fix up mtimedb["ldpath"] references broken by the previous commit.
svn path=/main/trunk/; revision=5174
Diffstat (limited to 'bin')
-rwxr-xr-xbin/emerge5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/emerge b/bin/emerge
index 1c20cc14..823cbaa2 100755
--- a/bin/emerge
+++ b/bin/emerge
@@ -4434,7 +4434,6 @@ def emerge_main():
settings, trees, mtimedb = load_emerge_config(trees=trees)
portdb = trees[settings["ROOT"]]["porttree"].dbapi
- ldpath_mtimes = mtimedb["ldpath"]
xterm_titles = "notitles" not in settings.features
"""Disable color as early as possible via NOCOLOR and stdout
@@ -4698,13 +4697,13 @@ def emerge_main():
validate_ebuild_environment(trees)
vartree = trees[settings["ROOT"]]["vartree"]
if 1 == unmerge(settings, myopts, vartree, myaction, myfiles,
- ldpath_mtimes, raise_on_missing=False):
+ mtimedb["ldpath"], raise_on_missing=False):
if "--pretend" not in myopts:
post_emerge(settings, mtimedb, 0)
elif "depclean"==myaction:
validate_ebuild_environment(trees)
- action_depclean(settings, trees, ldpath_mtimes,
+ action_depclean(settings, trees, mtimedb["ldpath"],
myopts, spinner)
if "--pretend" not in myopts:
post_emerge(settings, mtimedb, 0)