From 7865e886c936eb0e66a65acd287ecb690a776061 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 29 Jul 2012 11:41:23 -0500 Subject: [PATCH] main: usage() should list --about --- main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 58ab4b0..31da26d 100644 --- a/main.c +++ b/main.c @@ -357,7 +357,8 @@ usage(void) printf("\nbasic options:\n\n"); printf(" --help this message\n"); - printf(" --version print pkgconf version to stdout\n"); + printf(" --about print pkgconf version and license to stdout\n"); + printf(" --version print supported pkg-config version to stdout\n"); printf(" --atleast-pkgconfig-version check whether or not pkgconf is compatible\n"); printf(" with a specified pkg-config version\n"); printf(" --errors-to-stdout print all errors on stdout instead of stderr\n");