diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-05-21 18:06:58 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-05-21 18:06:58 (GMT) |
commit | 677fcd1174c464251914325d69c6c3ba121dc3d8 (patch) | |
tree | cfd374ee6a59e7905d662c667fffb32e50981e95 /Source | |
parent | da285df242411b2b798018009e1c2f37e5515c60 (diff) | |
download | CMake-677fcd1174c464251914325d69c6c3ba121dc3d8.zip CMake-677fcd1174c464251914325d69c6c3ba121dc3d8.tar.gz CMake-677fcd1174c464251914325d69c6c3ba121dc3d8.tar.bz2 |
ENH: fix line length
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 79098ac..da86aea 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -843,7 +843,9 @@ void cmMakefile::AddLinkLibraryForTarget(const char *target, // in older versions of cmake linking to modules was allowed if( tgt->GetType() == cmTarget::MODULE_LIBRARY ) { - e << "\nTo allow linking of modules set CMAKE_BACKWARDS_COMPATIBILITY to 2.2 or lower\n"; + e << + "\nTo allow linking of modules set " + "CMAKE_BACKWARDS_COMPATIBILITY to 2.2 or lower\n"; } // if no modules are allowed then this is always an error if(!allowModules || |