diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-06-30 09:09:07 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-06-30 09:09:07 +0000 |
commit | c40449f6e9746d92ef1d6a9d819b2395d8e6bab5 (patch) | |
tree | 81b59c4061b04c9d074fc8dcd4843698de2744f0 | |
parent | 3997a87e455c16df6f3dbfe55d1bad2b2e290b15 (diff) | |
download | portage-c40449f6e9746d92ef1d6a9d819b2395d8e6bab5.tar.gz portage-c40449f6e9746d92ef1d6a9d819b2395d8e6bab5.tar.bz2 portage-c40449f6e9746d92ef1d6a9d819b2395d8e6bab5.zip |
Pass the ldpath_mtimes for unmerging the already-installed instance.
svn path=/main/trunk/; revision=3714
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index e9e9d6860..e7bb750bb 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -6320,7 +6320,7 @@ class dblink: if os.path.exists(self.dbpkgdir): writemsg_stdout(">>> Safely unmerging already-installed instance...\n") self.dbdir = self.dbpkgdir - self.unmerge(oldcontents,trimworld=0) + self.unmerge(oldcontents, trimworld=0, ldpath_mtimes=prev_mtimes) self.dbdir = self.dbtmpdir writemsg_stdout(">>> Original instance of package unmerged safely.\n") |