summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorPeter Kuemmel <syntheticpp@gmx.net>2012-06-05 21:21:01 (GMT)
committerPeter Kuemmel <syntheticpp@gmx.net>2012-06-05 21:21:01 (GMT)
commit5aab7f90f1fe96611eee6b0c9d12c6bb1030d23a (patch)
tree25d42c451fafbfe462c13c617fc53e5cd25a79aa /Source
parentad4a768d59bc1d224ef097ff0724b8d5bfaa8128 (diff)
downloadCMake-5aab7f90f1fe96611eee6b0c9d12c6bb1030d23a.zip
CMake-5aab7f90f1fe96611eee6b0c9d12c6bb1030d23a.tar.gz
CMake-5aab7f90f1fe96611eee6b0c9d12c6bb1030d23a.tar.bz2
Ninja: 30000 is too long for windows cmd
Diffstat (limited to 'Source')
-rw-r--r--Source/cmNinjaNormalTargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx
index a99167f..3e6ab76 100644
--- a/Source/cmNinjaNormalTargetGenerator.cxx
+++ b/Source/cmNinjaNormalTargetGenerator.cxx
@@ -484,7 +484,7 @@ void cmNinjaNormalTargetGenerator::WriteLinkStatement()
int cmdLineLimit = -1;
#ifdef _WIN32
- cmdLineLimit = 30000;
+ cmdLineLimit = 8100;
#else
// TODO
#endif