diff options
author | Slávek Banko <[email protected]> | 2018-08-19 11:31:56 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-08-19 11:32:14 +0200 |
commit | 06582a62c4ccc0da5e1f317daf7b1fac781e2c3b (patch) | |
tree | b78218a9ae60c581295e9bccf48dbcf33cc7b5b8 /qmake/generators/win32/mingw_make.cpp | |
parent | f8aa70365c8b42bfc7180abf98d4e42cafed8d10 (diff) | |
download | tqt3-06582a62c4ccc0da5e1f317daf7b1fac781e2c3b.tar.gz tqt3-06582a62c4ccc0da5e1f317daf7b1fac781e2c3b.zip |
Fix FTBFS with stricter C++11
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 017e8dbffe8919583bb9a3828f9cd8a61505659b)
Diffstat (limited to 'qmake/generators/win32/mingw_make.cpp')
-rw-r--r-- | qmake/generators/win32/mingw_make.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/win32/mingw_make.cpp b/qmake/generators/win32/mingw_make.cpp index 06cc0f764..a082a4aa7 100644 --- a/qmake/generators/win32/mingw_make.cpp +++ b/qmake/generators/win32/mingw_make.cpp @@ -397,7 +397,7 @@ MingwMakefileGenerator::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") == "tqt-mt"TQTDLL_POSTFIX); + bool is_qt = (project->first("TARGET") == "qt" TQTDLL_POSTFIX || project->first("TARGET") == "tqt-mt" TQTDLL_POSTFIX); project->variables()["QMAKE_ORIG_TARGET"] = project->variables()["TARGET"]; // LIBS defined in Profile comes first for gcc |