diff options
author | 2011-02-01 15:48:21 +0000 | |
---|---|---|
committer | 2011-02-01 15:48:21 +0000 | |
commit | 53af40c9333bf44b50bf3357e2a41c9353473f17 (patch) | |
tree | b4368442aa94695ac11c0f0147a60bba99624108 /src | |
parent | 8cd3f89f1e7817fafca33e410b24af18fc333874 (diff) | |
download | paludis-53af40c9333bf44b50bf3357e2a41c9353473f17.tar.gz paludis-53af40c9333bf44b50bf3357e2a41c9353473f17.tar.xz |
cave owner -m short values
Diffstat (limited to 'src')
-rw-r--r-- | src/clients/cave/cmd_owner.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/clients/cave/cmd_owner.cc b/src/clients/cave/cmd_owner.cc index 9361f9091..bdba23e1e 100644 --- a/src/clients/cave/cmd_owner.cc +++ b/src/clients/cave/cmd_owner.cc @@ -2,7 +2,7 @@ /* * Copyright (c) 2008 Alexander Færøy - * Copyright (c) 2010 Ciaran McCreesh + * Copyright (c) 2010, 2011 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -70,10 +70,10 @@ namespace g_owner_options(main_options_section(), "Owner options", "Alter how the search is performed."), a_match(&g_owner_options, "match", 'm', "Which match algorithm to use", args::EnumArg::EnumArgOptions - ("auto", "If pattern starts with a /, full; if it contains a /, partial; otherwise, basename") - ("basename", "Basename match") - ("full", "Full match") - ("partial", "Partial match"), + ("auto", 'a', "If pattern starts with a /, full; if it contains a /, partial; otherwise, basename") + ("basename", 'b', "Basename match") + ("full", 'f', "Full match") + ("partial", 'p', "Partial match"), "auto"), a_dereference(&g_owner_options, "dereference", 'd', "If the pattern is a path that exists and is a symbolic link, " "dereference it recursively, and then search for the real path.", true) |