summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasper van Donderen <casper.vandonderen@nokia.com>2011-12-30 15:01:32 +0100
committerCasper van Donderen <casper.vandonderen@nokia.com>2011-12-30 15:01:32 +0100
commitdd38c73dd4906d1ee32fc89be2fb072f50b01ee6 (patch)
treecfe02c696bf24d47ee3a2670ed804e0e87120569
parentf99c17ef12c69990efb9eb18c1e83b91e07fe0ac (diff)
downloadqt4-tools-dd38c73dd4906d1ee32fc89be2fb072f50b01ee6.tar.gz
Also correctly apply stack size difference in MSVC2008
The quotes around the stack size are not parsed correctly in MSVC2008, MSVC2010 accepts both the version with and without quotes.
-rw-r--r--tools/qdoc3/qdoc3.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qdoc3/qdoc3.pro b/tools/qdoc3/qdoc3.pro
index 254ba923c5..74a5fe0261 100644
--- a/tools/qdoc3/qdoc3.pro
+++ b/tools/qdoc3/qdoc3.pro
@@ -15,9 +15,9 @@ qdoc_bootstrapped {
CONFIG -= debug_and_release_target
}
-# Increase the stack size on MSVC to 4M to avoid a stack overflow
+# Increase the stack size on MSVC to 4M to avoid a stack overflow
win32-msvc*:{
-    QMAKE_LFLAGS += /STACK:\"4194304\"
+ QMAKE_LFLAGS += /STACK:4194304
}
!isEmpty(QT_BUILD_TREE):DESTDIR = $$QT_BUILD_TREE/bin