From: Panu Matilainen Date: Tue, 12 Oct 2010 12:10:26 +0000 (+0300) Subject: Rpm option descriptions begin with lowercase letters, follow suit in rpmspec X-Git-Tag: rpm-4.9.0-beta1~213 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b611e57e667455ede8706094ce1ff50f6b06a32f;p=platform%2Fupstream%2Frpm.git Rpm option descriptions begin with lowercase letters, follow suit in rpmspec --- diff --git a/rpmspec.c b/rpmspec.c index 1b972fc..ecc4434 100644 --- a/rpmspec.c +++ b/rpmspec.c @@ -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,