Rpm option descriptions begin with lowercase letters, follow suit in rpmspec

This commit is contained in:
Panu Matilainen 2010-10-12 15:10:26 +03:00
parent 6f8125c9fd
commit b611e57e66
1 changed files with 3 additions and 3 deletions

View File

@ -23,11 +23,11 @@ char *queryformat = NULL;
/* the structure describing the options we take and the defaults */
static struct poptOption optionsTable[] = {
{ "query", 'q', POPT_ARG_VAL, &mode, MODE_QUERY,
N_("Query spec file(s)"), NULL },
N_("query spec file(s)"), NULL },
{ "rpms", 0, POPT_ARG_VAL, &source, RPMQV_SPECRPMS,
N_("Operate on binary rpms generated by spec (default)"), NULL },
N_("operate on binary rpms generated by spec (default)"), NULL },
{ "srpm", 0, POPT_ARG_VAL, &source, RPMQV_SPECSRPM,
N_("Operate on source rpm generated by spec"), NULL },
N_("operate on source rpm generated by spec"), NULL },
{ "target", 0, POPT_ARG_STRING, &target, 0,
N_("override target platform"), NULL },
{ "queryformat", 0, POPT_ARG_STRING, &queryformat, 0,