diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-05-20 15:59:58 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-05-20 15:59:58 +0900 |
commit | be5e13713024cfb3d9cab916ce7d9ec768b45acc (patch) | |
tree | 9eaa31a29512efbc7cb1a5ef9d3db4b7f3e8d5b8 /buildstream/plugins/elements | |
parent | c3db9fdd18d70508d02f174504e6baf57ddaf5ef (diff) | |
download | buildstream-be5e13713024cfb3d9cab916ce7d9ec768b45acc.tar.gz |
autotools plugin: Added %{conf-extra} variable
Allows more dynamic configuration of configure arguments
Diffstat (limited to 'buildstream/plugins/elements')
-rw-r--r-- | buildstream/plugins/elements/autotools.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buildstream/plugins/elements/autotools.yaml b/buildstream/plugins/elements/autotools.yaml index ee2a48d59..318d4d73c 100644 --- a/buildstream/plugins/elements/autotools.yaml +++ b/buildstream/plugins/elements/autotools.yaml @@ -12,6 +12,7 @@ variables: fi conf-cmd: ./configure + conf-extra: '' conf-args: | --prefix=%{prefix} \ @@ -26,7 +27,7 @@ variables: --localstatedir=%{localstatedir} \ --sharedstatedir=%{sharedstatedir} \ --mandir=%{mandir} \ - --infodir=%{infodir} + --infodir=%{infodir} %{conf-extra} configure: | |