aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotoolsprojectmanager/configurestep.cpp
diff options
context:
space:
mode:
authorDaniel Teske <[email protected]>2012-07-13 17:14:42 +0200
committerDaniel Teske <[email protected]>2012-08-24 12:13:36 +0200
commit8d8ab020b1fdd91cdeb67c597a7a1b6ee04c6f61 (patch)
tree3d842d869e30af581eb5b4868867d9bfbb46d619 /src/plugins/autotoolsprojectmanager/configurestep.cpp
parentc23bf0daa5fb41d7c53b2e96724e8f5a82ae14da (diff)
Make buildDirectoryInitialized a Qt4Project specific signal again
And fix it to the old behaviour while at it. Change-Id: Ifd786e085c621fb3cd59b98cc665d9e3c7fcce51 Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/autotoolsprojectmanager/configurestep.cpp')
-rw-r--r--src/plugins/autotoolsprojectmanager/configurestep.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/plugins/autotoolsprojectmanager/configurestep.cpp b/src/plugins/autotoolsprojectmanager/configurestep.cpp
index fd26da4b7cc..296172da332 100644
--- a/src/plugins/autotoolsprojectmanager/configurestep.cpp
+++ b/src/plugins/autotoolsprojectmanager/configurestep.cpp
@@ -230,19 +230,6 @@ QVariantMap ConfigureStep::toMap() const
return map;
}
-bool ConfigureStep::processSucceeded(int exitCode, QProcess::ExitStatus status)
-{
- if (exitCode != 0 || status != QProcess::NormalExit)
- return false;
- AutotoolsBuildConfiguration *bc = qobject_cast<AutotoolsBuildConfiguration *>(buildConfiguration());
- if (!bc)
- bc = qobject_cast<AutotoolsBuildConfiguration *>(target()->activeBuildConfiguration());
- if (!bc)
- return true;
- bc->emitBuildDirectoryInitialized();
- return true;
-}
-
bool ConfigureStep::fromMap(const QVariantMap &map)
{
m_additionalArguments = map.value(QLatin1String(CONFIGURE_ADDITIONAL_ARGUMENTS_KEY)).toString();