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

This commit is contained in:
Brad King 2004-10-29 17:18:16 -04:00
parent 81bbae1fb2
commit bf2a2b203f
1 changed files with 1 additions and 1 deletions

View File

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