diff options
author | Jan Niklas Hasse <jhasse@bixense.com> | 2018-11-16 13:07:45 (GMT) |
---|---|---|
committer | Jan Niklas Hasse <jhasse@bixense.com> | 2018-11-16 13:07:45 (GMT) |
commit | cfd74e54fa30f507364bc2ecc4b4314ccbd60a1c (patch) | |
tree | c66c0d22f39709cbb514324f6c2108432f69c3b9 | |
parent | 845213a9cd882394d011cb22a0c6cffa39361526 (diff) | |
download | Ninja-cfd74e54fa30f507364bc2ecc4b4314ccbd60a1c.zip Ninja-cfd74e54fa30f507364bc2ecc4b4314ccbd60a1c.tar.gz Ninja-cfd74e54fa30f507364bc2ecc4b4314ccbd60a1c.tar.bz2 |
Fit --help output into 80 columns and move verbose up, fix #1500
-rw-r--r-- | src/ninja.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ninja.cc b/src/ninja.cc index 1267b03..a3d73ad 100644 --- a/src/ninja.cc +++ b/src/ninja.cc @@ -201,16 +201,16 @@ void Usage(const BuildConfig& config) { "if targets are unspecified, builds the 'default' target (see manual).\n" "\n" "options:\n" -" --version print ninja version (\"%s\")\n" +" --version print ninja version (\"%s\")\n" +" -v, --verbose show all command lines while building\n" "\n" " -C DIR change to DIR before doing anything else\n" " -f FILE specify input build file [default=build.ninja]\n" "\n" -" -j N run N jobs in parallel (0 means infinity) [default=%d, derived from CPUs available]\n" +" -j N run N jobs in parallel (0 means infinity) [default=%d on this system]\n" " -k N keep going until N jobs fail (0 means infinity) [default=1]\n" " -l N do not start new jobs if the load average is greater than N\n" " -n dry run (don't run commands but act like they succeeded)\n" -" -v, --verbose show all command lines while building\n" "\n" " -d MODE enable debugging (use '-d list' to list modes)\n" " -t TOOL run a subtool (use '-t list' to list subtools)\n" |