summaryrefslogtreecommitdiffstats
path: root/qmake/generators/win32/borland_bmake.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-08-19 11:31:56 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-08-19 11:32:14 +0200
commit06582a62c4ccc0da5e1f317daf7b1fac781e2c3b (patch)
treeb78218a9ae60c581295e9bccf48dbcf33cc7b5b8 /qmake/generators/win32/borland_bmake.cpp
parentf8aa70365c8b42bfc7180abf98d4e42cafed8d10 (diff)
downloadtqt3-06582a62c4ccc0da5e1f317daf7b1fac781e2c3b.tar.gz
tqt3-06582a62c4ccc0da5e1f317daf7b1fac781e2c3b.zip
Fix FTBFS with stricter C++11
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 017e8dbffe8919583bb9a3828f9cd8a61505659b)
Diffstat (limited to 'qmake/generators/win32/borland_bmake.cpp')
-rw-r--r--qmake/generators/win32/borland_bmake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/win32/borland_bmake.cpp b/qmake/generators/win32/borland_bmake.cpp
index b7ca9c1a0..41666e3a0 100644
--- a/qmake/generators/win32/borland_bmake.cpp
+++ b/qmake/generators/win32/borland_bmake.cpp
@@ -386,7 +386,7 @@ BorlandMakefileGenerator::init()
if(project->isEmpty("QMAKE_INSTALL_DIR"))
project->variables()["QMAKE_INSTALL_DIR"].append("$(COPY_DIR)");
- bool is_qt = (project->first("TARGET") == "qt"TQTDLL_POSTFIX || project->first("TARGET") == "qtmt"TQTDLL_POSTFIX);
+ bool is_qt = (project->first("TARGET") == "qt" TQTDLL_POSTFIX || project->first("TARGET") == "qtmt" TQTDLL_POSTFIX);
TQStringList &configs = project->variables()["CONFIG"];
if (project->isActiveConfig("shared"))
project->variables()["DEFINES"].append("QT_DLL");