diff options
author | Tobias Hunger <[email protected]> | 2015-11-13 12:19:35 +0100 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2015-11-16 14:04:59 +0000 |
commit | 79f82d0d0ae9fffb4daebdc10bc1abe1761b99e1 (patch) | |
tree | 3ea76f0fada59fb3203240e8a05d39661cf62464 /src/plugins/autotoolsprojectmanager/configurestep.cpp | |
parent | cedf015c10cae35738ff7651389c660f101d0e98 (diff) |
BuildManager: Provide context of earlier build steps to init
This information can be used to get information from earlier steps,
which e.g. queried for android devices to deploy to.
Change-Id: Iefe1c9443915cb6211f86f98ff7aaf3cb75145ba
Reviewed-by: Niels Weber <[email protected]>
Diffstat (limited to 'src/plugins/autotoolsprojectmanager/configurestep.cpp')
-rw-r--r-- | src/plugins/autotoolsprojectmanager/configurestep.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/autotoolsprojectmanager/configurestep.cpp b/src/plugins/autotoolsprojectmanager/configurestep.cpp index ba65c6b8965..4d641d952dd 100644 --- a/src/plugins/autotoolsprojectmanager/configurestep.cpp +++ b/src/plugins/autotoolsprojectmanager/configurestep.cpp @@ -166,7 +166,7 @@ void ConfigureStep::ctor() setDefaultDisplayName(tr("Configure")); } -bool ConfigureStep::init() +bool ConfigureStep::init(QList<const BuildStep *> &earlierSteps) { BuildConfiguration *bc = buildConfiguration(); @@ -178,7 +178,7 @@ bool ConfigureStep::init() pp->setArguments(additionalArguments()); pp->resolveAll(); - return AbstractProcessStep::init(); + return AbstractProcessStep::init(earlierSteps); } void ConfigureStep::run(QFutureInterface<bool>& interface) |