Commit 23a1c12d authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard

Add support for --verbose for compatibility.

parent 01fbcfb2
...@@ -88,6 +88,7 @@ static char usage[] = ...@@ -88,6 +88,7 @@ static char usage[] =
" --target Synonym for -F\n" " --target Synonym for -F\n"
" --undefine Synonym for -U\n" " --undefine Synonym for -U\n"
" --use-temp-file Ignored for compatibility with windres\n" " --use-temp-file Ignored for compatibility with windres\n"
" --verbose Synonym for -v\n"
" --verify-translations Check the status of the various translations\n" " --verify-translations Check the status of the various translations\n"
" --version Print version and exit\n" " --version Print version and exit\n"
"Input is taken from stdin if no sourcefile specified.\n" "Input is taken from stdin if no sourcefile specified.\n"
...@@ -197,6 +198,7 @@ static struct option long_options[] = { ...@@ -197,6 +198,7 @@ static struct option long_options[] = {
{ "target", 1, 0, 'F' }, { "target", 1, 0, 'F' },
{ "undefine", 1, 0, 'U' }, { "undefine", 1, 0, 'U' },
{ "use-temp-file", 0, 0, 2 }, { "use-temp-file", 0, 0, 2 },
{ "verbose", 0, 0, 'v' },
{ "verify-translations", 0, 0, 9 }, { "verify-translations", 0, 0, 9 },
{ "version", 0, 0, 5 }, { "version", 0, 0, 5 },
{ 0, 0, 0, 0 } { 0, 0, 0, 0 }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment