diff options
author | Jim MacArthur <jim.macarthur@codethink.co.uk> | 2018-08-17 10:10:05 +0100 |
---|---|---|
committer | Martin Blanchard <martin.blanchard@codethink.co.uk> | 2018-09-07 13:57:29 +0100 |
commit | 116f80d220bcf49261692263870b491aca099384 (patch) | |
tree | 03c264cce31999509cfa15f919e46ae65403983e | |
parent | 89b29b8bcf9ce56dd8ee0161433a225acb786151 (diff) | |
download | buildstream-116f80d220bcf49261692263870b491aca099384.tar.gz |
autotools.py: Mark this as a BST_VIRTUAL_DIRECTORY plugin
https://gitlab.com/BuildStream/buildstream/issues/454
-rw-r--r-- | buildstream/plugins/elements/autotools.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buildstream/plugins/elements/autotools.py b/buildstream/plugins/elements/autotools.py index 14d04d9a3..cf5e85661 100644 --- a/buildstream/plugins/elements/autotools.py +++ b/buildstream/plugins/elements/autotools.py @@ -57,7 +57,8 @@ from buildstream import BuildElement # Element implementation for the 'autotools' kind. class AutotoolsElement(BuildElement): - pass + # Supports virtual directories (required for remote execution) + BST_VIRTUAL_DIRECTORY = True # Plugin entry point |