From 7c8fc30541321697de8f6e18e25bd63337e01c6b Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Wed, 23 May 2012 15:14:58 -0300 Subject: [PATCH] b2/boom.c (usage): -Q wasn't mentioned; explain -q and -Q --- b2/boom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/b2/boom.c b/b2/boom.c index 0a1cde8..3968aad 100644 --- a/b2/boom.c +++ b/b2/boom.c @@ -75,15 +75,15 @@ static void do_substitutions(void) static void usage(const char *name) { fprintf(stderr, -"usage: %s file [[-type] file ...] [-q var=value ...] ...\n\n" +"usage: %s file [[-type] file ...] [(-q|-Q) var=value ...] ...\n\n" " file types:\n" " -c characteristics\n" " -i inventory\n" " -x currency exchange\n" " -p providers\n" " -s substitutions\n" -" -q var=value ...\n" -" -Q var=value ...\n" +" -q var=value ... run substitutions with the specified inputs\n" +" -Q var=value ... run substitutions and then do parametric search\n" , name); exit(1); }