diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-02-03 01:01:32 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-02-03 01:01:32 +0000 |
| commit | 5500e2034203773e15bb3ec0ad8abcd4661fed82 (patch) | |
| tree | e0a90a9b05b217533e3c9af9a70655382b229e3a /src/tools/dcpomatic_cli.cc | |
| parent | e775fc5125fdbd955934f04a50a58f6660d6f28e (diff) | |
Move log environment dump stuff out into its own file.
Diffstat (limited to 'src/tools/dcpomatic_cli.cc')
| -rw-r--r-- | src/tools/dcpomatic_cli.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc index 44abf4116..2a2db9842 100644 --- a/src/tools/dcpomatic_cli.cc +++ b/src/tools/dcpomatic_cli.cc @@ -48,7 +48,6 @@ help (string n) cerr << "Syntax: " << n << " [OPTION] <FILM>\n" << " -v, --version show DCP-o-matic version\n" << " -h, --help show this help\n" - << " -d, --deps list DCP-o-matic dependency details and quit\n" << " -f, --flags show flags passed to C++ compiler on build\n" << " -n, --no-progress do not print progress to stdout\n" << " -r, --no-remote do not use any remote servers\n" @@ -70,7 +69,6 @@ main (int argc, char* argv[]) static struct option long_options[] = { { "version", no_argument, 0, 'v'}, { "help", no_argument, 0, 'h'}, - { "deps", no_argument, 0, 'd'}, { "flags", no_argument, 0, 'f'}, { "no-progress", no_argument, 0, 'n'}, { "no-remote", no_argument, 0, 'r'}, @@ -78,7 +76,7 @@ main (int argc, char* argv[]) { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "vhdfnrk", long_options, &option_index); + int c = getopt_long (argc, argv, "vhfnrk", long_options, &option_index); if (c == -1) { break; @@ -91,9 +89,6 @@ main (int argc, char* argv[]) case 'h': help (argv[0]); exit (EXIT_SUCCESS); - case 'd': - cout << dependency_version_summary () << "\n"; - exit (EXIT_SUCCESS); case 'f': cout << dcpomatic_cxx_flags << "\n"; exit (EXIT_SUCCESS); |
