use -f for input file, matching make
authorEvan Martin <martine@danga.com>
Sat, 5 Feb 2011 19:38:36 +0000 (11:38 -0800)
committerEvan Martin <martine@danga.com>
Sat, 5 Feb 2011 19:38:36 +0000 (11:38 -0800)
misc/long-slow-build.ninja
src/ninja.cc

index 113f1e1..46af6ba 100644 (file)
@@ -1,5 +1,5 @@
 # An input file for running a "slow" build.
-# Use like: ninja -i misc/long-slow-build.ninja all
+# Use like: ninja -f misc/long-slow-build.ninja all
 
 rule sleep
   command = sleep 1
index 0547013..39cbfed 100644 (file)
@@ -32,7 +32,7 @@ void usage(const BuildConfig& config) {
 "usage: ninja [options] target\n"
 "\n"
 "options:\n"
-"  -i FILE  specify input build file [default=build.ninja]\n"
+"  -f FILE  specify input build file [default=build.ninja]\n"
 "  -j N     run N jobs in parallel [default=%d]\n"
 "  -n       dry run (don't run commands but pretend they succeeded)\n"
 "  -v       show all command lines\n"
@@ -144,9 +144,9 @@ int main(int argc, char** argv) {
   config.parallelism = GuessParallelism();
 
   int opt;
-  while ((opt = getopt_long(argc, argv, "hi:j:nt:v", options, NULL)) != -1) {
+  while ((opt = getopt_long(argc, argv, "f:hj:nt:v", options, NULL)) != -1) {
     switch (opt) {
-      case 'i':
+      case 'f':
         input_file = optarg;
         break;
       case 'j':