summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTollef Fog Heen <tfheen@err.no>2009-12-06 22:28:08 +0100
committerTollef Fog Heen <tfheen@err.no>2009-12-06 22:28:08 +0100
commit0ff14c5ba8be79e4a2de26c25d2c67e4c718867d (patch)
tree2e23802c606adba1be797f867212825398714b26
parent1437da3b5d994f8f7269fb553277584519ea4aed (diff)
downloadpkg-config-0ff14c5ba8be79e4a2de26c25d2c67e4c718867d.tar.gz
Reduce the width of arguments
This makes the --help output flow easier and look better.
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 5c099ec..e096359 100644
--- a/main.c
+++ b/main.c
@@ -228,9 +228,9 @@ main (int argc, char **argv)
{ "cflags-only-other", 0, POPT_ARG_NONE, &want_other_cflags, 0,
"output cflags not covered by the cflags-only-I option"},
{ "variable", 0, POPT_ARG_STRING, &variable_name, 0,
- "get the value of a variable", "VARIABLENAME" },
+ "get the value of variable named NAME", "NAME" },
{ "define-variable", 0, POPT_ARG_STRING, NULL, DEFINE_VARIABLE,
- "set the value of a variable", "VARIABLENAME=VARIABLEVALUE" },
+ "set variable NAME to VALUE", "NAME=VALUE" },
{ "exists", 0, POPT_ARG_NONE, &want_exists, 0,
"return 0 if the module(s) exist" },
{ "uninstalled", 0, POPT_ARG_NONE, &want_uninstalled, 0,