From: Zac Medico Date: Thu, 1 May 2008 18:11:22 +0000 (-0000) Subject: Bug #219918 - Remove the last traces of PORTAGE_TMPFS. X-Git-Tag: v2.1.5~106 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=824194ebb8734d099b7505be1f8613c0b5a42891;p=portage.git Bug #219918 - Remove the last traces of PORTAGE_TMPFS. svn path=/main/branches/2.1.2/; revision=10061 --- diff --git a/pym/portage.py b/pym/portage.py index d90b4027d..34bb0a4a1 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -7177,14 +7177,6 @@ class portdbapi(dbapi): os.environ["SANDBOX_WRITE"] = \ ":".join(filter(None, sandbox_write)) - self.tmpfs = self.mysettings["PORTAGE_TMPFS"] - if self.tmpfs and not os.path.exists(self.tmpfs): - self.tmpfs = None - if self.tmpfs and not os.access(self.tmpfs, os.W_OK): - self.tmpfs = None - if self.tmpfs and not os.access(self.tmpfs, os.R_OK): - self.tmpfs = None - self.eclassdb = eclass_cache.cache(self.porttree_root, overlays=self.mysettings["PORTDIR_OVERLAY"].split())