From nobody Sat Apr 11 13:00:29 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 339FDC76188 for ; Tue, 7 Mar 2023 11:12:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230241AbjCGLML (ORCPT ); Tue, 7 Mar 2023 06:12:11 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59500 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230515AbjCGLLA (ORCPT ); Tue, 7 Mar 2023 06:11:00 -0500 Received: from smtp-1909.mail.infomaniak.ch (smtp-1909.mail.infomaniak.ch [IPv6:2001:1600:3:17::1909]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 27B45498BA for ; Tue, 7 Mar 2023 03:09:50 -0800 (PST) Received: from smtp-3-0001.mail.infomaniak.ch (unknown [10.4.36.108]) by smtp-2-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4PWCQL3ZmSzMqKxR; Tue, 7 Mar 2023 12:09:46 +0100 (CET) Received: from unknown by smtp-3-0001.mail.infomaniak.ch (Postfix) with ESMTPA id 4PWCQK6mNBzMtF5p; Tue, 7 Mar 2023 12:09:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=digikod.net; s=20191114; t=1678187386; bh=j344tDO2f63i9Elu17RwASnV5i9rdc4X/0J30W3pGSk=; h=From:To:Cc:Subject:Date:From; b=MuEnxl7ndKnK+llkmkmDHkETG2nGx9d+ckJUwfzdyzw8XLLxDdSKuICFtejkwFf5+ ZAPfMXlZ+Rec/2AwaTZQQrFjJw1Q48avOTeVj4FVyztSSOylr+sIX3goQATdCUiVY3 iYywIjzoVQoMckrQQnhVDtcZflC0bK1EeYVOA1ts= From: =?UTF-8?q?Micka=C3=ABl=20Sala=C3=BCn?= To: Christian Brauner Cc: =?UTF-8?q?Micka=C3=ABl=20Sala=C3=BCn?= , Masahiro Yamada , Sam Ravnborg , linux-kernel@vger.kernel.org Subject: [PATCH] samples/pidfd: Fix build Date: Tue, 7 Mar 2023 12:09:10 +0100 Message-Id: <20230307110910.93077-1-mic@digikod.net> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Infomaniak-Routing: alpha Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix a typo that made the pidfd-metadata program never build. Fixes: 60fb0b123971 ("samples: pidfd: build sample program for target archi= tecture") Cc: Christian Brauner Cc: Masahiro Yamada Cc: Sam Ravnborg Signed-off-by: Micka=C3=ABl Sala=C3=BCn Link: https://lore.kernel.org/r/20230307110910.93077-1-mic@digikod.net Reviewed-by: Christian Brauner --- samples/pidfd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/pidfd/Makefile b/samples/pidfd/Makefile index 9754e2d81f70..d82409f7061f 100644 --- a/samples/pidfd/Makefile +++ b/samples/pidfd/Makefile @@ -1,4 +1,4 @@ # SPDX-License-Identifier: GPL-2.0 -usertprogs-always-y +=3D pidfd-metadata +userprogs-always-y +=3D pidfd-metadata =20 userccflags +=3D -I usr/include --=20 2.39.2