summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2007-10-15 13:13:11 +0000
committerMarius Mauch <genone@gentoo.org>2007-10-15 13:13:11 +0000
commitbdae2fe7f2ffaad07eba4249bdd925f32519ae22 (patch)
treee944a4fee71870cae5738378e297fbffe7a28298 /pym
parent8363dc2d873fb26a890144e2af6be3907fdc1cdb (diff)
downloadportage-bdae2fe7f2ffaad07eba4249bdd925f32519ae22.tar.gz
portage-bdae2fe7f2ffaad07eba4249bdd925f32519ae22.tar.bz2
portage-bdae2fe7f2ffaad07eba4249bdd925f32519ae22.zip
remove unused tmpfs variable
svn path=/main/trunk/; revision=8128
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/porttree.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index 6a8e441ca..05fe2a767 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -65,14 +65,6 @@ class portdbapi(dbapi):
self.depcachedir = self.mysettings.depcachedir[:]
- 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())