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:30:37 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-08-19 11:31:08 +0200
commitd8ba3610e2d2e6c31d1a53666dba02100f67d7d9 (patch)
tree44c6a3cbefaf56da2e11893bf4357e6fa2aad26e /qmake/generators/win32/borland_bmake.cpp
parent66a9352083f29737022d94a32a8edbc0db854aaa (diff)
downloadqt3-d8ba3610e2d2e6c31d1a53666dba02100f67d7d9.tar.gz
qt3-d8ba3610e2d2e6c31d1a53666dba02100f67d7d9.zip
Fix FTBFS with stricter C++11
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 5431226296e2607b37b4f666ee970bddb5fd5707)
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 dae8a97..73adadd 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"QTDLL_POSTFIX || project->first("TARGET") == "qtmt"QTDLL_POSTFIX);
+ bool is_qt = (project->first("TARGET") == "qt" QTDLL_POSTFIX || project->first("TARGET") == "qtmt" QTDLL_POSTFIX);
QStringList &configs = project->variables()["CONFIG"];
if (project->isActiveConfig("shared"))
project->variables()["DEFINES"].append("QT_DLL");