From 9ce8a6b94cd92ef78224bb126979b80d7764bfbf Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Tue, 27 May 2014 20:09:24 +0200 Subject: Fix QMAKE_EXTRA_COMPILERS' depend_command being ignored A typo caused qmake to stop output dependency information added by the depend_command clause. Task-number: QTBUG-13334 Change-Id: I00fabc87438ce94e80341e6f88aa2e0eaab57e19 Reviewed-by: Oswald Buddenhagen Reviewed-by: Frederik Gladhorn --- qmake/generators/makefile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qmake') diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp index 72430cb190..7bc673bf7b 100644 --- a/qmake/generators/makefile.cpp +++ b/qmake/generators/makefile.cpp @@ -1809,7 +1809,7 @@ MakefileGenerator::writeExtraCompilerTargets(QTextStream &t) QString tmp_out = fileFixify(project->first(ProKey(*it + ".output")).toQString(), Option::output_dir, Option::output_dir); const QString tmp_cmd = project->values(ProKey(*it + ".commands")).join(' '); - const QString tmp_dep_cmd = project->values(ProKey(*it + "depend_command")).join(' '); + const QString tmp_dep_cmd = project->values(ProKey(*it + ".depend_command")).join(' '); QString dep_cd_cmd; if (!tmp_dep_cmd.isEmpty()) { dep_cd_cmd = QLatin1String("cd ") -- cgit v1.2.3