diff options
author | Darius Makovsky <traveltissues@protonmail.com> | 2019-11-01 11:19:13 +0000 |
---|---|---|
committer | Darius Makovsky <traveltissues@protonmail.com> | 2019-11-04 12:53:43 +0000 |
commit | cf2439db276e233fa3b69e22110d0fe1f04e048d (patch) | |
tree | ffd6febfb68848cd9f68f83419fc78163fea1a8f /src/buildstream/plugins | |
parent | 1993ff0d96c51ee6aa1d4a601ad976b20f175a46 (diff) | |
download | buildstream-cf2439db276e233fa3b69e22110d0fe1f04e048d.tar.gz |
Replace BST_NO_PRESTAGE_KEY with BST_KEY_REQUIRES_STAGE
Correct version number for BST_KEY_REQUIRES_STAGE
Diffstat (limited to 'src/buildstream/plugins')
-rw-r--r-- | src/buildstream/plugins/sources/local.py | 2 | ||||
-rw-r--r-- | src/buildstream/plugins/sources/workspace.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/buildstream/plugins/sources/local.py b/src/buildstream/plugins/sources/local.py index 98f74c16c..6114c60c9 100644 --- a/src/buildstream/plugins/sources/local.py +++ b/src/buildstream/plugins/sources/local.py @@ -46,7 +46,7 @@ class LocalSource(Source): # pylint: disable=attribute-defined-outside-init BST_STAGE_VIRTUAL_DIRECTORY = True - BST_NO_PRESTAGE_KEY = True + BST_KEY_REQUIRES_STAGE = True def __init__(self, context, project, meta): super().__init__(context, project, meta) diff --git a/src/buildstream/plugins/sources/workspace.py b/src/buildstream/plugins/sources/workspace.py index 303b67938..1088f07f6 100644 --- a/src/buildstream/plugins/sources/workspace.py +++ b/src/buildstream/plugins/sources/workspace.py @@ -48,7 +48,7 @@ class WorkspaceSource(Source): # pylint: disable=attribute-defined-outside-init BST_STAGE_VIRTUAL_DIRECTORY = True - BST_NO_PRESTAGE_KEY = True + BST_KEY_REQUIRES_STAGE = True def __init__(self, context, project, meta) -> None: super().__init__(context, project, meta) |