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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 77B1E1581EC for ; Tue, 19 Nov 2024 15:24:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABFAFE07EE; Tue, 19 Nov 2024 15:24:54 +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 8FF34E07EE for ; Tue, 19 Nov 2024 15:24:54 +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 85C7933BF39 for ; Tue, 19 Nov 2024 15:24:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37EC11295 for ; Tue, 19 Nov 2024 15:24:51 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732029834.d164e7ca79c3945d479cd319d9e47c839f79bb40.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lttng-tools/lttng-tools-2.13.14.ebuild dev-util/lttng-tools/lttng-tools-2.13.9.ebuild X-VCS-Directories: dev-util/lttng-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d164e7ca79c3945d479cd319d9e47c839f79bb40 X-VCS-Branch: master Date: Tue, 19 Nov 2024 15:24:51 +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: 975e329c-f3b0-4357-a701-8b25ebbaba3a X-Archives-Hash: 0439147db1fdb48e9f3d89a968cd2178 commit: d164e7ca79c3945d479cd319d9e47c839f79bb40 Author: Sam James gentoo org> AuthorDate: Tue Nov 19 15:23:54 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 19 15:23:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d164e7ca dev-util/lttng-tools: explicitly disable -Werror Signed-off-by: Sam James gentoo.org> dev-util/lttng-tools/lttng-tools-2.13.14.ebuild | 4 +++- dev-util/lttng-tools/lttng-tools-2.13.9.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-util/lttng-tools/lttng-tools-2.13.14.ebuild b/dev-util/lttng-tools/lttng-tools-2.13.14.ebuild index 5c8ab318c0d8..77e87b71801b 100644 --- a/dev-util/lttng-tools/lttng-tools-2.13.14.ebuild +++ b/dev-util/lttng-tools/lttng-tools-2.13.14.ebuild @@ -41,7 +41,9 @@ src_configure() { # bug 906928 use elibc_musl && append-cppflags -D_LARGEFILE64_SOURCE - econf $(usex ust "" --without-lttng-ust) + econf \ + $(usex ust "" --without-lttng-ust) \ + --disable-Werror } src_install() { diff --git a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild index ce9797cfbfb1..d24f0b3772ae 100644 --- a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild +++ b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild @@ -52,7 +52,9 @@ src_configure() { # bug 906928 use elibc_musl && append-cppflags -D_LARGEFILE64_SOURCE - econf $(usex ust "" --without-lttng-ust) + econf \ + $(usex ust "" --without-lttng-ust) \ + --disable-Werror } src_install() {