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 12:12:38 +0100
commit6740b17ba1b9dc1081207a7008b0b0c9fe6f7f4d (patch)
tree0b5fcaab0b3d5597671288755abf329bb74de9ce
parentd7a9ba8c9e2aee868b7bd8633130579aa0e2ebc9 (diff)
downloadbuildstream-6740b17ba1b9dc1081207a7008b0b0c9fe6f7f4d.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')