Fix compile

This commit is contained in:
dt
2009-11-30 12:45:10 +01:00
parent d6d48fa23c
commit 9984944171
2 changed files with 2 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ bool QMakeStep::init()
if (QDir(workingDirectory).exists(QLatin1String("Makefile"))) {
QString qmakePath = QtVersionManager::findQMakeBinaryFromMakefile(workingDirectory);
if (qtVersion->qmakeCommand() == qmakePath) {
m_needToRunQMake = !qt4bc->compareBuildConfigurationToImportFrom(workingDirectory);
m_needToRunQMake = !qt4bc->compareToImportFrom(workingDirectory);
}
}

View File

@@ -506,7 +506,7 @@ QString MaemoRunConfiguration::maddeRoot() const
const QString MaemoRunConfiguration::sysRoot() const
{
if (const MaemoToolChain *tc = toolchain())
return toolchain()->sysrootRoot();
return tc->sysrootRoot();
return QString();
}