diff options
Diffstat (limited to 'src/buildstream/plugins/elements/autotools.py')
-rw-r--r-- | src/buildstream/plugins/elements/autotools.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/buildstream/plugins/elements/autotools.py b/src/buildstream/plugins/elements/autotools.py index 71b2e5854..089c9bca0 100644 --- a/src/buildstream/plugins/elements/autotools.py +++ b/src/buildstream/plugins/elements/autotools.py @@ -66,9 +66,7 @@ class AutotoolsElement(BuildElement): # Enable command batching across prepare() and assemble() def configure_sandbox(self, sandbox): super().configure_sandbox(sandbox) - self.batch_prepare_assemble( - SandboxFlags.ROOT_READ_ONLY, collect=self.get_variable("install-root") - ) + self.batch_prepare_assemble(SandboxFlags.ROOT_READ_ONLY, collect=self.get_variable("install-root")) # Plugin entry point |