diff options
author | Brad King <brad.king@kitware.com> | 2004-10-29 21:18:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2004-10-29 21:18:16 (GMT) |
commit | bf2a2b203f70f9403746a7a5e68797edc8941349 (patch) | |
tree | 681c8e2580e37c54533867badaa24bb2c689420d /Source/cmLocalUnixMakefileGenerator2.cxx | |
parent | 81bbae1fb26058e7f1656b4bc14c41a65bf242eb (diff) | |
download | CMake-bf2a2b203f70f9403746a7a5e68797edc8941349.zip CMake-bf2a2b203f70f9403746a7a5e68797edc8941349.tar.gz CMake-bf2a2b203f70f9403746a7a5e68797edc8941349.tar.bz2 |
BUG: Dependency makefile lines must be at least three characters long to hold a dependency.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator2.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.cxx b/Source/cmLocalUnixMakefileGenerator2.cxx index d8830e6..5052996 100644 --- a/Source/cmLocalUnixMakefileGenerator2.cxx +++ b/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; } |