Meson: Hopefully final build fix for older GCC

Amends 77d7bb5014.

Change-Id: I94df369cd8aae7d978ede631103199a3a7cb5b26
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Eike Ziller
2020-06-10 16:17:28 +02:00
committed by Christian Stenger
parent 26121da90c
commit 5fcbc55c2c
2 changed files with 5 additions and 4 deletions

View File

@@ -144,7 +144,8 @@ bool MesonProjectParser::configure(const Utils::FilePath &sourcePath,
auto cmd = MesonTools::mesonWrapper(m_meson)->configure(sourcePath, buildPath, args);
// see comment near m_pendingCommands declaration
m_pendingCommands.enqueue(
{MesonTools::mesonWrapper(m_meson)->regenerate(sourcePath, buildPath), false});
std::make_tuple(MesonTools::mesonWrapper(m_meson)->regenerate(sourcePath, buildPath),
false));
return m_process.run(cmd, m_env, m_projectName);
}