summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@qt.io>2018-10-02 14:02:01 +0200
committerAndy Shaw <andy.shaw@qt.io>2018-10-17 19:06:24 +0000
commit2624676b5731a9d93a1e46429d2c597f1e4bae38 (patch)
tree3f7143552ebfe2ea3e795b2e86ecf5e0a19ab19e
parent1cd2955173e2248b92f44c9d52d81447ff87906c (diff)
qmake: Remove the extra space before -MT
Removing the extra space before -MT ensures that the vcxproj generator gets valid input. Change-Id: Iccf88c5fc4473db406d714b646185a4fb60a3418 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
-rw-r--r--mkspecs/features/static_runtime.prf4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkspecs/features/static_runtime.prf b/mkspecs/features/static_runtime.prf
index 3275e6e2e2..1af3236189 100644
--- a/mkspecs/features/static_runtime.prf
+++ b/mkspecs/features/static_runtime.prf
@@ -1,7 +1,7 @@
msvc {
# -MD becomes -MT, -MDd becomes -MTd
- QMAKE_CFLAGS ~= s,^-MD(d?)$, -MT\1,g
- QMAKE_CXXFLAGS ~= s,^-MD(d?)$, -MT\1,g
+ QMAKE_CFLAGS ~= s,^-MD(d?)$,-MT\1,g
+ QMAKE_CXXFLAGS ~= s,^-MD(d?)$,-MT\1,g
} else: mingw {
QMAKE_LFLAGS += -static
}