From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4C7C2A034F; Fri, 26 Feb 2021 10:12:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C1413407FF; Fri, 26 Feb 2021 10:12:01 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 99FC140692; Fri, 26 Feb 2021 10:11:59 +0100 (CET) IronPort-SDR: QIXsHQb0F/WeMKZs38WiddZ8Qo8pdO1eSJHgO8A6g0heAc+HxOpS+hhA8BpbhKuG/06I6KY1Sm YXpHwpJ8VVTg== X-IronPort-AV: E=McAfee;i="6000,8403,9906"; a="165687413" X-IronPort-AV: E=Sophos;i="5.81,208,1610438400"; d="scan'208";a="165687413" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Feb 2021 01:11:58 -0800 IronPort-SDR: qOrn8D/a94T9eeaaoJVEeEI0r3oh2LgyLyiIcwNBdNq8XQ1nMYCVczd0twpcjIWW9WTKGDSVzO +1CLwCYoqWeg== X-IronPort-AV: E=Sophos;i="5.81,208,1610438400"; d="scan'208";a="404822762" Received: from dsgurupr-mobl1.gar.corp.intel.com (HELO bricha3-MOBL.ger.corp.intel.com) ([10.252.16.207]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 26 Feb 2021 01:11:55 -0800 Date: Fri, 26 Feb 2021 09:11:52 +0000 From: Bruce Richardson To: Thomas Monjalon Cc: dev@dpdk.org, ncopa@alpinelinux.org, stable@dpdk.org, Konstantin Ananyev , Ray Kinsella , Neil Horman , Haiyue Wang , David Marchand , Adrien Mazarguil Message-ID: <20210226091152.GC1308@bricha3-MOBL.ger.corp.intel.com> References: <20190313170657.16688-1-ncopa@alpinelinux.org> <20210225182250.1149592-1-thomas@monjalon.net> <20210225182250.1149592-3-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210225182250.1149592-3-thomas@monjalon.net> Subject: Re: [dpdk-dev] [PATCH v5 02/17] buildtools: fix build with busybox X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 Thu, Feb 25, 2021 at 07:22:35PM +0100, Thomas Monjalon wrote: > If using busybox for mktemp and awk (as in Alpine), > some bugs prevent the script from running: > > 1/ It seems busybox mktemp requires the pattern to have at least > 6 X and no other suffix. > The same has been fixed for other scripts in the past: > commit 3771edc35438 ("buildtools: fix build for some mktemp") > > 2/ It seems busybox awk does not accept the regex ^.*{ > except if the opening curly brace is escaped. > > Fixes: 4c82473412e8 ("build: add internal tag check") > Fixes: 68b1f1cda5b4 ("build: check AVX512 rather than binutils version") > Fixes: 3290ac14eb94 ("buildtools: detect discrepancies for experimental symbols") > Cc: stable@dpdk.org > > Signed-off-by: Thomas Monjalon > --- Acked-by: Bruce Richardson