aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/rulecommands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/rulecommands.cpp')
-rw-r--r--src/lib/corelib/buildgraph/rulecommands.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/lib/corelib/buildgraph/rulecommands.cpp b/src/lib/corelib/buildgraph/rulecommands.cpp
index ce50bcfcf..73f5fcfc3 100644
--- a/src/lib/corelib/buildgraph/rulecommands.cpp
+++ b/src/lib/corelib/buildgraph/rulecommands.cpp
@@ -219,16 +219,6 @@ void ProcessCommand::getEnvironmentFromList(const QStringList &envList)
}
}
-static bool processEnvironmentsAreEqual(const QProcessEnvironment &env1,
- const QProcessEnvironment &env2)
-{
-#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
- return env1 == env2;
-#else // qtbase/8b5cdc20be
- return env1.toStringList() == env2.toStringList();
-#endif
-}
-
bool ProcessCommand::equals(const AbstractCommand *otherAbstractCommand) const
{
if (!AbstractCommand::equals(otherAbstractCommand))
@@ -245,7 +235,7 @@ bool ProcessCommand::equals(const AbstractCommand *otherAbstractCommand) const
&& m_responseFileUsagePrefix == other->m_responseFileUsagePrefix
&& m_stdoutFilePath == other->m_stdoutFilePath
&& m_stderrFilePath == other->m_stderrFilePath
- && processEnvironmentsAreEqual(m_environment, other->m_environment);
+ && m_environment == other->m_environment;
}
void ProcessCommand::fillFromScriptValue(const QScriptValue *scriptValue, const CodeLocation &codeLocation)