summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorTollef Fog Heen <tfheen@err.no>2009-12-06 22:28:30 +0100
committerTollef Fog Heen <tfheen@err.no>2009-12-06 22:28:30 +0100
commite04ee5a1b83a3c6dfde7ea529c0d2407665a84cf (patch)
tree2277015f5fc0179c11a63cb746396ec3b797c520 /main.c
parent0ff14c5ba8be79e4a2de26c25d2c67e4c718867d (diff)
downloadpkg-config-e04ee5a1b83a3c6dfde7ea529c0d2407665a84cf.tar.gz
Fix up help for --silence-errors
Bug #8616
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.c b/main.c
index e096359..df25aaa 100644
--- a/main.c
+++ b/main.c
@@ -246,9 +246,11 @@ main (int argc, char **argv)
{ "debug", 0, POPT_ARG_NONE, &want_debug_spew, 0,
"show verbose debug information" },
{ "print-errors", 0, POPT_ARG_NONE, &want_verbose_errors, 0,
- "show verbose information about missing or conflicting packages" },
+ "show verbose information about missing or conflicting packages,"
+ "default if --cflags or --libs given on the command line" },
{ "silence-errors", 0, POPT_ARG_NONE, &want_silence_errors, 0,
- "show verbose information about missing or conflicting packages" },
+ "be silent about errors (default unless --cflags or --libs"
+ "given on the command line)" },
{ "errors-to-stdout", 0, POPT_ARG_NONE, &want_stdout_errors, 0,
"print errors from --print-errors to stdout not stderr" },
#ifdef G_OS_WIN32