From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1634190-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2E851158004 for <garchives@archives.gentoo.org>; Wed, 22 May 2024 14:59:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55F52E2AC5; Wed, 22 May 2024 14:59:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 315D2E2AC5 for <gentoo-commits@lists.gentoo.org>; Wed, 22 May 2024 14:59:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 394CB33BDF5 for <gentoo-commits@lists.gentoo.org>; Wed, 22 May 2024 14:59:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88D1116BD for <gentoo-commits@lists.gentoo.org>; Wed, 22 May 2024 14:59:13 +0000 (UTC) From: "Ben Kohler" <bkohler@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" <bkohler@gentoo.org> Message-ID: <1716389249.fb29d87cc5dcfd6e3222f3bee63fc9e6a764fa3c.bkohler@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: gkbuilds/ X-VCS-Repository: proj/genkernel X-VCS-Files: gkbuilds/mdadm-4.2.gkbuild X-VCS-Directories: gkbuilds/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: fb29d87cc5dcfd6e3222f3bee63fc9e6a764fa3c X-VCS-Branch: master Date: Wed, 22 May 2024 14:59:13 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d732d211-918b-4b71-9d72-50c3a5981639 X-Archives-Hash: 5813873ffd5ff5f291f18042dcf99e8a commit: fb29d87cc5dcfd6e3222f3bee63fc9e6a764fa3c Author: Ben Kohler <bkohler <AT> gentoo <DOT> org> AuthorDate: Wed May 22 14:47:29 2024 +0000 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org> CommitDate: Wed May 22 14:47:29 2024 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=fb29d87c gkbuilds/mdadm-4.2: add missing musl fix Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org> gkbuilds/mdadm-4.2.gkbuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gkbuilds/mdadm-4.2.gkbuild b/gkbuilds/mdadm-4.2.gkbuild index d996346..99bfb84 100644 --- a/gkbuilds/mdadm-4.2.gkbuild +++ b/gkbuilds/mdadm-4.2.gkbuild @@ -16,6 +16,9 @@ src_prepare() { } src_compile() { + # bug 907082 + append-cppflags -D_LARGEFILE64_SOURCE + CXFLAGS="-DNO_LIBUDEV" gkmake V=1 mdadm mdmon }