From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 6D0EF1581E7 for ; Sun, 21 Apr 2024 15:09:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A375FE29CB; Sun, 21 Apr 2024 15:09:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 85065E29CB for ; Sun, 21 Apr 2024 15:09:17 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C04C134350F for ; Sun, 21 Apr 2024 15:09:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 359EC135F for ; Sun, 21 Apr 2024 15:09:15 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1713712151.f2d465249bb54366d84f6c4c9689dbc6cc5cc80f.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/blktrace/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/blktrace/blktrace-1.3.0-r1.ebuild X-VCS-Directories: sys-block/blktrace/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: f2d465249bb54366d84f6c4c9689dbc6cc5cc80f X-VCS-Branch: master Date: Sun, 21 Apr 2024 15:09:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 25318ae1-73e4-4e29-a25c-8235e421c5d8 X-Archives-Hash: b2b7f5a391525f7d2ab6148540cccf64 commit: f2d465249bb54366d84f6c4c9689dbc6cc5cc80f Author: Robin H. Johnson gentoo org> AuthorDate: Sun Apr 21 15:05:40 2024 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Apr 21 15:09:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d46524 sys-block/blktrace: QA direct cc call Signed-off-by: Robin H. Johnson gentoo.org> Closes: https://bugs.gentoo.org/930357 sys-block/blktrace/blktrace-1.3.0-r1.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys-block/blktrace/blktrace-1.3.0-r1.ebuild b/sys-block/blktrace/blktrace-1.3.0-r1.ebuild index f894d58430b3..9f6d161916e2 100644 --- a/sys-block/blktrace/blktrace-1.3.0-r1.ebuild +++ b/sys-block/blktrace/blktrace-1.3.0-r1.ebuild @@ -32,12 +32,13 @@ src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS}" if use doc; then export VARTEXFONTS="${T}/fonts" - emake docs + emake docs CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS}" fi } src_install() { - emake install DESTDIR="${ED}" prefix="/usr" mandir="/usr/share/man" + # Do not remove the CC/FLAGS here; bug 930357 + emake install DESTDIR="${ED}" prefix="/usr" mandir="/usr/share/man" CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS}" einstalldocs use doc && dodoc doc/blktrace.pdf btt/doc/btt.pdf }