From 33cb598bdf73bee581cd4a8a55b53580c16066dc Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 16 Jan 2009 09:44:49 +0000 Subject: [PATCH] apk: short option for --root is -p Used to be so in the really old days of apk. --- src/apk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apk.c b/src/apk.c index 8040dd9..91b5450 100644 --- a/src/apk.c +++ b/src/apk.c @@ -97,7 +97,7 @@ static struct apk_applet *deduce_applet(int argc, char **argv) #define NUM_GENERIC_OPTS 5 static struct option generic_options[32] = { - { "root", required_argument, NULL, 'Q' }, + { "root", required_argument, NULL, 'p' }, { "repository", required_argument, NULL, 'X' }, { "quiet", no_argument, NULL, 'q' }, { "verbose", no_argument, NULL, 'v' },