1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-06-28 22:42:01 +03:00

b2/boom.c (usage): -Q wasn't mentioned; explain -q and -Q

This commit is contained in:
Werner Almesberger 2012-05-23 15:14:58 -03:00
parent db279b7920
commit 7c8fc30541

View File

@ -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);
}