diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2009-03-19 16:07:18 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2009-03-19 16:07:18 +0200 |
commit | 2e672f3fae9d8ff7ee64ae13cfa2fe65272c2ede (patch) | |
tree | 804dec57143b7391be4d27d762252bfbdbeaf0c6 /rpmqv.c | |
parent | 46f1247a276a66561b49f97364558bf8f89d2354 (diff) | |
download | rpm-2e672f3fae9d8ff7ee64ae13cfa2fe65272c2ede.tar.gz rpm-2e672f3fae9d8ff7ee64ae13cfa2fe65272c2ede.tar.bz2 rpm-2e672f3fae9d8ff7ee64ae13cfa2fe65272c2ede.zip |
Show query/verify selection options just once in --help
Diffstat (limited to 'rpmqv.c')
-rw-r--r-- | rpmqv.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -73,17 +73,15 @@ static int quiet; static struct poptOption optionsTable[] = { #ifdef IAM_RPMQV + { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmQVSourcePoptTable, 0, + N_("Query/Verify package selection options:"), + NULL }, { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmQueryPoptTable, 0, N_("Query options (with -q or --query):"), NULL }, { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmVerifyPoptTable, 0, N_("Verify options (with -V or --verify):"), NULL }, -#ifdef NOTYET - { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmcliQVSourcePoptTable, 0, - N_("Source options (with --query or --verify):"), - NULL }, -#endif { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmcliFtsPoptTable, 0, N_("File tree walk options (with --ftswalk):"), NULL }, |