X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 6A978DC5C75 for ; Thu, 27 Jun 2013 19:29:10 +0000 (UTC) Received: from compute3.internal (compute3.nyi.mail.srv.osa [10.202.2.43]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 12A8320938 for ; Thu, 27 Jun 2013 15:29:03 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute3.internal (MEProxy); Thu, 27 Jun 2013 15:29:03 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=o1SJ67KQG+zhFCyyorhka3Wis 9Q=; b=kernhT+mZa/4F4xYjvhrNFkozkTDuAcykOoET/5zFrcbFY7xhrxeASTdQ vB4OWApy8bJthM4mRDaWeyvYxVXfke1X9dekVc0wljduxPBPsUbzj9MHddOxcCX7 cl0VTiw5gri8+dJg11P5FWWHi8sn3yJ0EjsReOZK/WP6PmzEU0= X-Sasl-enc: e23Xq/mK/5/cM7FzjXVFP1NbokY/Awf/TaWIZBSmUoSc 1372361342 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id D33296802B6 for ; Thu, 27 Jun 2013 15:29:02 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 04/15] tweak "apk fix" usage Date: Thu, 27 Jun 2013 15:28:49 -0400 Message-Id: X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- src/fix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fix.c b/src/fix.c index 4672813..3a7a8e6 100644 --- a/src/fix.c +++ b/src/fix.c @@ -86,8 +86,8 @@ static int fix_main(void *pctx, struct apk_database *db, struct apk_string_array static struct apk_option fix_options[] = { { 'd', "depends", "Fix all dependencies too" }, - { 'u', "upgrade", "Upgrade package if possible" }, - { 'r', "reinstall", "Reinstall the package" }, + { 'r', "reinstall", "Reinstall the package (default)" }, + { 'u', "upgrade", "Prefer to upgrade package" }, { 0x10000, "directory-permissions", "Reset all directory permissions" }, }; -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---