diff options
| author | Giuseppe D'Angelo <[email protected]> | 2014-05-27 20:09:24 +0200 |
|---|---|---|
| committer | The Qt Project <[email protected]> | 2014-05-30 19:36:38 +0200 |
| commit | 9ce8a6b94cd92ef78224bb126979b80d7764bfbf (patch) | |
| tree | c7ef24a1ffc4b191ee7dee785b319ecba517d172 | |
| parent | 7e5e7eeaa1418d959906cdf9d717c984c9fc7a7e (diff) | |
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 <[email protected]>
Reviewed-by: Frederik Gladhorn <[email protected]>
| -rw-r--r-- | qmake/generators/makefile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp index 72430cb190b..7bc673bf7ba 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 ") |
