diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-04-28 18:47:57 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-04-28 18:47:57 +0000 |
commit | 621d9748c08cf82062c329f3479cdc86363dda4a (patch) | |
tree | 24fd6503415451bb8ff11bae2c8e2194fd7e13ac | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-621d9748c08cf82062c329f3479cdc86363dda4a.tar.gz gentoo-2-621d9748c08cf82062c329f3479cdc86363dda4a.tar.bz2 gentoo-2-621d9748c08cf82062c329f3479cdc86363dda4a.zip |
"touch" cosmetic bug fix
-rwxr-xr-x | sys-apps/portage/files/1.5/pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-apps/portage/files/1.5/pym/portage.py b/sys-apps/portage/files/1.5/pym/portage.py index 614009cb564a..3f6bb9f410bd 100755 --- a/sys-apps/portage/files/1.5/pym/portage.py +++ b/sys-apps/portage/files/1.5/pym/portage.py @@ -1635,7 +1635,7 @@ class dblink: mergestart=mergeroot print ">>> Updating mtimes..." #before merging, it's *very important* to touch all the files !!! - os.system("(cd "+mergeroot+"; for x in `find`; do touch -c $x; done)") + os.system("(cd "+mergeroot+"; for x in `find`; do touch -c $x 2>/dev/null; done)") print ">>> Merging",self.cat+"/"+self.pkg,"to",root if not os.path.exists(root): print "!!! Error: ROOT setting points to a non-existent directory. Exiting." |