From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stable-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id D8D82A0547
	for <public@inbox.dpdk.org>; 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 CD4A122A25F;
	Fri, 26 Feb 2021 10:12:02 +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 <bruce.richardson@intel.com>
To: Thomas Monjalon <thomas@monjalon.net>
Cc: dev@dpdk.org, ncopa@alpinelinux.org, stable@dpdk.org,
 Konstantin Ananyev <konstantin.ananyev@intel.com>,
 Ray Kinsella <mdr@ashroe.eu>, Neil Horman <nhorman@tuxdriver.com>,
 Haiyue Wang <haiyue.wang@intel.com>,
 David Marchand <david.marchand@redhat.com>,
 Adrien Mazarguil <adrien.mazarguil@6wind.com>
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-stable] [PATCH v5 02/17] buildtools: fix build with
 busybox
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: patches for DPDK stable branches <stable.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
Errors-To: stable-bounces@dpdk.org
Sender: "stable" <stable-bounces@dpdk.org>

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 <thomas@monjalon.net>
> ---

Acked-by: Bruce Richardson <bruce.richardson@intel.com>