Browse Source

BUG: Dependency makefile lines must be at least three characters long to hold a dependency.

Brad King 21 years ago
parent
commit
bf2a2b203f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalUnixMakefileGenerator2.cxx

+ 1 - 1
Source/cmLocalUnixMakefileGenerator2.cxx

@@ -1936,7 +1936,7 @@ cmLocalUnixMakefileGenerator2
         }
 
       // Skip lines too short to have a dependency.
-      if(line.size() < 2)
+      if(line.size() < 3)
         {
         continue;
         }