From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 32BB6C282DA for ; Wed, 17 Apr 2019 16:30:40 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id DDF7C20663 for ; Wed, 17 Apr 2019 16:30:39 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org DDF7C20663 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D7A541B762; Wed, 17 Apr 2019 18:30:38 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 66C551B75F for ; Wed, 17 Apr 2019 18:30:36 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Apr 2019 09:30:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,362,1549958400"; d="scan'208";a="224364568" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.220.103]) by orsmga001.jf.intel.com with SMTP; 17 Apr 2019 09:30:33 -0700 Received: by (sSMTP sendmail emulation); Wed, 17 Apr 2019 17:30:32 +0100 Date: Wed, 17 Apr 2019 17:30:32 +0100 From: Bruce Richardson To: Thomas Monjalon Cc: dev@dpdk.org, bluca@debian.org, david.marchand@redhat.com Message-ID: <20190417163032.GA1812@bricha3-MOBL.ger.corp.intel.com> References: <20190409105539.61460-1-bruce.richardson@intel.com> <20190409105539.61460-6-bruce.richardson@intel.com> <1933086.Pj6GKimo0N@xps> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1933086.Pj6GKimo0N@xps> User-Agent: Mutt/1.11.4 (2019-03-13) Subject: Re: [dpdk-dev] [PATCH v2 5/5] devtools/test-meson-builds: fix support for FreeBSD X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Wed, Apr 17, 2019 at 06:17:06PM +0200, Thomas Monjalon wrote: > 09/04/2019 12:55, Bruce Richardson: > > --- a/devtools/test-meson-builds.sh > > +++ b/devtools/test-meson-builds.sh > > -set -o pipefail > > +# this option gives an error on BSD > > +if [ "`uname`" = "Linux" ] ; then > > + set -o pipefail > > +fi > > I think this is a bash option. > We may require bash at the top of this script as a workaround. > Or we can revert the inital patch piping to cat for verbose mode. > Probably best to do the latter, I think. No real need to have two verbose modes, just one. Let me see what I can do, if there may be any other options. /Bruce