From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 19 Oct 2022 07:41:29 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ol1pb-000GT6-6v for lore@lore.pengutronix.de; Wed, 19 Oct 2022 07:41:29 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1ol1pX-0002Tj-Sc; Wed, 19 Oct 2022 07:41:27 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ol1pD-00017J-9g; Wed, 19 Oct 2022 07:41:07 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1ol1pC-0002vP-JP; Wed, 19 Oct 2022 07:41:06 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1ol1pB-001gVp-Ue; Wed, 19 Oct 2022 07:41:05 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Wed, 19 Oct 2022 07:41:05 +0200 Message-Id: <20221019054105.401702-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220930143637.3372940-1-u.kleine-koenig@pengutronix.de> References: <20220930143637.3372940-1-u.kleine-koenig@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] ptxdist: Add --silent and -s as aliases for --quiet X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: =?UTF-8?q?Uwe=20Kleine-K=C3=83=C2=B6nig?= Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 120c9ba1be73e425b9de3012ac5e9eec1fd0ea07. Michael [sent from post-receive hook] On Wed, 19 Oct 2022 07:41:05 +0200, Uwe Kleine-König wrote: > Many options that ptxdist parses are the same for make(1) (e.g. -j, -k, > -d). However the option to make make silent is -s, add that to reduce > the time I spend on thinking which option is for which command. > > While at it also add --silent in accordance to make (which also knows > about --quiet by the way). > > Signed-off-by: Uwe Kleine-König > Message-Id: <20220930143637.3372940-1-u.kleine-koenig@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/bin/ptxdist b/bin/ptxdist > index 5c6df104e5f6..dfb619cbd8d0 100755 > --- a/bin/ptxdist > +++ b/bin/ptxdist > @@ -812,6 +812,7 @@ Options: > > --debug, -d print out additional info (like make decisions) > --quiet, -q suppress output, show only stderr > + --silent, -s alias for --quiet > --verbose, -v be more verbose, print command before execute them > --output-sync Improve output readability for parallel building. > Disabled by default except for quiet builds. > @@ -1148,7 +1149,7 @@ parse_first() > --progress) > PTXDIST_PROGRESS=1 > ;; > - -q|--quiet) > + -q|--quiet|-s|--silent) > PTXDIST_QUIET=1 > ;; > --git)