From 189adcc37977178760b13a76674ec662e6fba96d Mon Sep 17 00:00:00 2001 From: hjk Date: Sun, 27 Jan 2013 21:36:49 +0100 Subject: [PATCH] CustomToolChain: Fix make command Change-Id: I11da49b9bb1fe0f5a71f0a1ea684fce486074f21 Reviewed-by: Orgad Shaneh --- src/plugins/projectexplorer/customtoolchain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/customtoolchain.cpp b/src/plugins/projectexplorer/customtoolchain.cpp index cc13b97895a..9275ef86a6c 100644 --- a/src/plugins/projectexplorer/customtoolchain.cpp +++ b/src/plugins/projectexplorer/customtoolchain.cpp @@ -460,7 +460,7 @@ void CustomToolChainConfigWidget::applyImpl() Q_ASSERT(tc); QString displayName = tc->displayName(); tc->setCompilerCommand(m_compilerCommand->fileName()); - tc->setMakeCommand(m_compilerCommand->fileName()); + tc->setMakeCommand(m_makeCommand->fileName()); tc->setTargetAbi(m_abiWidget->currentAbi()); tc->setPredefinedMacros(m_predefinedDetails->entries()); tc->setHeaderPaths(m_headerDetails->entries());