diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-08 15:25:42 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-08 15:25:42 (GMT) |
commit | aae8dca79769583439661418a91c6ed3e884024d (patch) | |
tree | 892b666f7c5ea25968dbc36620d7e3eb1f64bef9 | |
parent | 7961c8685bf98ffc929863dffc9ee97573ddd0ba (diff) | |
download | CMake-aae8dca79769583439661418a91c6ed3e884024d.zip CMake-aae8dca79769583439661418a91c6ed3e884024d.tar.gz CMake-aae8dca79769583439661418a91c6ed3e884024d.tar.bz2 |
fix line length error
-rw-r--r-- | Source/cmake.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index fafe2ae..bac67e9 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -970,8 +970,9 @@ void CMakeCommandUsage(const char* program) << " remove_directory dir - remove a directory and its contents\n" << " remove [-f] file1 file2 ... - remove the file(s), use -f to force " "it\n" - << " tar [cxt][vfz][cvfj] file.tar file/dir1 file/dir2 ... - create a tar " - "archive\n" + << " tar [cxt][vfz][cvfj] file.tar " + "file/dir1 file/dir2 ... - create a tar " + "archive\n" << " time command [args] ... - run command and return elapsed time\n" << " touch file - touch a file.\n" << " touch_nocreate file - touch a file but do not create it.\n" |