summaryrefslogtreecommitdiffstats
path: root/qmake/generators
diff options
context:
space:
mode:
authorMarius Storm-Olsen <marius@trolltech.com>2009-06-11 06:29:11 (GMT)
committerMarius Storm-Olsen <marius@trolltech.com>2009-06-11 06:29:11 (GMT)
commit0989cbe2b164560eef14334a540fcbcb2e2ec8cb (patch)
tree744ab25eefae406f16da42863b301ea1cbe24473 /qmake/generators
parent2e41f3fd234a31a57c111b16e0339dea52d77d4d (diff)
downloadQt-0989cbe2b164560eef14334a540fcbcb2e2ec8cb.zip
Qt-0989cbe2b164560eef14334a540fcbcb2e2ec8cb.tar.gz
Qt-0989cbe2b164560eef14334a540fcbcb2e2ec8cb.tar.bz2
Remove var->QMAKE_COMP_var docs, and mark feature unsupported.
Reviewed By: andy
Diffstat (limited to 'qmake/generators')
-rw-r--r--qmake/generators/makefile.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
index 2d4658e..a385748 100644
--- a/qmake/generators/makefile.cpp
+++ b/qmake/generators/makefile.cpp
@@ -1910,6 +1910,7 @@ MakefileGenerator::writeExtraCompilerTargets(QTextStream &t)
deps += replaceExtraCompilerVariables(pre_deps.at(i), (*input), out);
}
QString cmd = replaceExtraCompilerVariables(tmp_cmd, (*input), out);
+ // NOTE: The var -> QMAKE_COMP_var replace feature is unsupported, do not use!
for(QStringList::ConstIterator it3 = vars.constBegin(); it3 != vars.constEnd(); ++it3)
cmd.replace("$(" + (*it3) + ")", "$(QMAKE_COMP_" + (*it3)+")");
if(!tmp_dep_cmd.isEmpty() && doDepends()) {