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 CB718A0093; Tue, 8 Mar 2022 22:21:45 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5508E40395; Tue, 8 Mar 2022 22:21:45 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by mails.dpdk.org (Postfix) with ESMTP id A71A740141 for ; Tue, 8 Mar 2022 22:21:43 +0100 (CET) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 358AC5C007E; Tue, 8 Mar 2022 16:21:43 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Tue, 08 Mar 2022 16:21:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:cc:content-transfer-encoding:content-type:date:date:from:from :in-reply-to:in-reply-to:message-id:mime-version:references :reply-to:sender:subject:subject:to:to; s=fm1; bh=SQ0t8a920HADmD YbJY72UxSUdgpitKRgGw1WApo2+yU=; b=nr4Zqd0eVHPESdwwNe9lyKudFZ3mgL bHwqQZzw4xVCGWP0axn5cCoCgZOM+eN+0EF+mqdpWrve8vrgLVeP494hwTnj4xUH UFsHvlTis/DR4H3wKijpPcl6BVJDaaWqSPqBURxmafUGUcDLqQDPu+mXnjIsDTi6 LMfIpcdJAOEpU9BN0HwoPHsE+ZnKKt3p4DiBiUlNlsoMMktcgaiciR0IExIhKza5 /EUuoAN21NfQwovd+XUndcj79IyxU2wg5cb5bDxW1BYTjE00kSJlTYNvSJsI0FnY 2vcRosntNyNzSPzuYfdiQe3ChPkjz3eIQCuHXap0uwy5jItEnIUasGwA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding :content-type:date:date:from:from:in-reply-to:in-reply-to :message-id:mime-version:references:reply-to:sender:subject :subject:to:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=SQ0t8a920HADmDYbJY72UxSUdgpitKRgGw1WApo2+ yU=; b=dsDZ7/MKqLtrDkzNSdCxcScf0edPHbmZSkhRMrySw5cWyc4JSn3TFleY0 gEBwqFPu6ZfCCzvDrW9/sxMCL1tamS7vRBY0nN0oFaKeTxWE8RAIQcr4+90WKYUx XVUVUs84iiAuaHcJ8v3RCVbSxfvXz07JPojv1ZPUP6rK7X/+nDgUwIvWlIKalHlG H12v+SbLdN7/IXomPmLiEEi2cobI0JUTTCDoakefN+Oyw8YmgH8XmgoiACyVs5sv Tas2dMmPwSOvZFnTjFAyC1Kq81sjNnE6YOjbK5XM22qTssEwRGiIuHTnHBXr8weV 8FPD7hopzPyOUC2hrCxMzhtNoLXWw== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrudduiedgudegiecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd enucfjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhm rghsucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenuc ggtffrrghtthgvrhhnpedugefgvdefudfftdefgeelgffhueekgfffhfeujedtteeutdej ueeiiedvffegheenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfh hrohhmpehthhhomhgrshesmhhonhhjrghlohhnrdhnvght X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Tue, 8 Mar 2022 16:21:41 -0500 (EST) From: Thomas Monjalon To: dev@dpdk.org Cc: Usama Arif Subject: Re: [PATCH] devtools: fix symbols check Date: Tue, 08 Mar 2022 22:21:40 +0100 Message-ID: <4258263.KiezcSG77Q@thomas> In-Reply-To: <20220308211859.3677476-1-thomas@monjalon.net> References: <20220308211859.3677476-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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 08/03/2022 22:18, Thomas Monjalon: > In some environments, the check of local symbols catch-all > was failing. Note: this script is called during the build. > > The reason is that grep returns an error if nothing is found. > The option -e of the shell script makes this error fatal. > It is not always fatal because the grep is in a command substitution. > > Fixes: b403498e1422 ("build: hide local symbols in shared libraries") > > Reported-by: Usama Arif > Signed-off-by: Thomas Monjalon Applied quickly to fix the build in some environments.