diff options
| author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-12-13 18:41:04 +0900 |
|---|---|---|
| committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2018-12-13 14:23:19 +0000 |
| commit | 29ab271c3e9a277d2b3d65a9bebbfa88883ff63e (patch) | |
| tree | be1c7f72d2d88e91106615ea164918060af743f2 /buildstream/plugins/elements | |
| parent | 053beb6692795354a7ff0ee8a48ae4514c4e4a33 (diff) | |
| download | buildstream-29ab271c3e9a277d2b3d65a9bebbfa88883ff63e.tar.gz | |
makemaker plugin: Support virtual directories
Diffstat (limited to 'buildstream/plugins/elements')
| -rw-r--r-- | buildstream/plugins/elements/makemaker.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buildstream/plugins/elements/makemaker.py b/buildstream/plugins/elements/makemaker.py index 8ad979984..17deb66d4 100644 --- a/buildstream/plugins/elements/makemaker.py +++ b/buildstream/plugins/elements/makemaker.py @@ -36,7 +36,8 @@ from buildstream import BuildElement # Element implementation for the 'makemaker' kind. class MakeMakerElement(BuildElement): - pass + # Supports virtual directories (required for remote execution) + BST_VIRTUAL_DIRECTORY = True # Plugin entry point |
