summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Kohler <ataraxia937@gmail.com>2011-03-24 22:00:35 -0400
committerDan McGee <dan@archlinux.org>2011-03-24 21:16:11 -0500
commitc37c9c5dcae06c1585b4da4c0b838f5b44e1498e (patch)
tree186e5b3ebeb0d66bb721d2762f00b2647327019c
parent14474a32c90b2202f1faf69ea20abbcdedfe4c29 (diff)
downloadpacman-c37c9c5dcae06c1585b4da4c0b838f5b44e1498e.tar.gz
pacman-c37c9c5dcae06c1585b4da4c0b838f5b44e1498e.zip
Add -T, --deptest to usage message
Fixes FS #23369 Signed-off-by: Ray Kohler <ataraxia937@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--src/pacman/pacman.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index fc34f0e9..2847fd50 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -123,6 +123,7 @@ static void usage(int op, const char * const myname)
printf(" %s {-Q --query} [%s] [%s]\n", myname, str_opt, str_pkg);
printf(" %s {-R --remove} [%s] <%s>\n", myname, str_opt, str_pkg);
printf(" %s {-S --sync} [%s] [%s]\n", myname, str_opt, str_pkg);
+ printf(" %s {-T --deptest} [%s] [%s]\n", myname, str_opt, str_pkg);
printf(" %s {-U --upgrade} [%s] <%s>\n", myname, str_opt, str_file);
printf(_("\nuse '%s {-h --help}' with an operation for available options\n"),
myname);
@@ -173,6 +174,9 @@ static void usage(int op, const char * const myname)
printf("%s:\n", str_opt);
addlist(_(" --asdeps mark packages as non-explicitly installed\n"));
addlist(_(" --asexplicit mark packages as explicitly installed\n"));
+ } else if(op == PM_OP_DEPTEST) {
+ printf("%s: %s {-T --deptest} [%s] [%s]\n", str_usg, myname, str_opt, str_pkg);
+ printf("%s:\n", str_opt);
}
switch(op) {
case PM_OP_SYNC: