summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-02-25 11:14:15 +0100
committerJürg Billeter <j@bitron.ch>2019-02-28 05:14:47 +0100
commit115b2db3b633cb22fabaea0d15415c5e004130df (patch)
treee2857890ad36585aff82b25bc5a1e164b28f5fa6
parent08d1fb6d080c0c6e9894d76f7826a00e9f5b92b7 (diff)
downloadbuildstream-115b2db3b633cb22fabaea0d15415c5e004130df.tar.gz
_context.py: Remove unused extractdir field
-rw-r--r--buildstream/_context.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/buildstream/_context.py b/buildstream/_context.py
index 75edac39d..7e8a22998 100644
--- a/buildstream/_context.py
+++ b/buildstream/_context.py
@@ -70,9 +70,6 @@ class Context():
# The directory for CAS
self.casdir = None
- # Extract directory
- self.extractdir = None
-
# The directory for temporary files
self.tmpdir = None
@@ -218,7 +215,6 @@ class Context():
setattr(self, directory, path)
# add directories not set by users
- self.extractdir = os.path.join(self.cachedir, 'extract')
self.tmpdir = os.path.join(self.cachedir, 'tmp')
self.casdir = os.path.join(self.cachedir, 'cas')
self.builddir = os.path.join(self.cachedir, 'build')