From a407af83f510c1206373623ab84695eb8139f8a1 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 16 Mar 2007 18:36:45 +0000 Subject: Fix a utime call to prevent a timestamp collision for bug #171117. svn path=/main/trunk/; revision=6217 --- pym/portage/dbapi/vartree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 17ca0e390..e658d6378 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1844,10 +1844,10 @@ class dblink(object): sys.exit(1) zing = ">>>" else: - mymtime = thismtime + mymtime = long(time.time()) # We need to touch the destination so that on --update the # old package won't yank the file with it. (non-cfgprot related) - os.utime(mydest, (thismtime,thismtime)) + os.utime(mydest, (mymtime, mymtime)) zing = "---" if self.settings["USERLAND"] == "Darwin" and myrealdest[-2:] == ".a": -- cgit v1.2.3-1-g7c22