Browse Source

Merge topic 'remove-GetMaximumFilePathLength-call'

b97760f Remove call to SystemTools::GetMaximumFilePathLength
Brad King 15 years ago
parent
commit
ccc790f160
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmDepends.cxx

+ 1 - 1
Source/cmDepends.cxx

@@ -25,7 +25,7 @@ cmDepends::cmDepends(cmLocalGenerator* lg, const char* targetDir):
   Verbose(false),
   FileComparison(0),
   TargetDirectory(targetDir),
-  MaxPath(cmSystemTools::GetMaximumFilePathLength()),
+  MaxPath(16384),
   Dependee(new char[MaxPath]),
   Depender(new char[MaxPath])
 {