summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-05-01 18:11:22 +0000
committerZac Medico <zmedico@gentoo.org>2008-05-01 18:11:22 +0000
commit824194ebb8734d099b7505be1f8613c0b5a42891 (patch)
tree8f852a65e71b2e871b3f9c9afa8a27c2a1f1028b /pym/portage.py
parent4cdefb5bd4a970535d4f193b15f6a3978c8c0e2f (diff)
downloadportage-824194ebb8734d099b7505be1f8613c0b5a42891.tar.gz
portage-824194ebb8734d099b7505be1f8613c0b5a42891.tar.bz2
portage-824194ebb8734d099b7505be1f8613c0b5a42891.zip
Bug #219918 - Remove the last traces of PORTAGE_TMPFS.
svn path=/main/branches/2.1.2/; revision=10061
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py8
1 files changed, 0 insertions, 8 deletions
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())