From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 1D09FA00E6 for ; Wed, 17 Apr 2019 18:30:40 +0200 (CEST) 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="UTF-8" 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" Message-ID: <20190417163032.OGfqkUDAIg6pcUkSKgUyiI6YGyTly1vfh7hZ-mUSdvM@z> 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