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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2DED9158CB7 for ; Wed, 18 Aug 2021 19:39:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53680E0809; Wed, 18 Aug 2021 19:39:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38F1EE0815 for ; Wed, 18 Aug 2021 19:39:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A924341DA6 for ; Wed, 18 Aug 2021 19:39:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C29898CB for ; Wed, 18 Aug 2021 19:39:27 +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: <1629314574.6d063e7a4a82ff651b950298756d74b9d026f591.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pulseaudio/pulseaudio-15.0.ebuild X-VCS-Directories: media-sound/pulseaudio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6d063e7a4a82ff651b950298756d74b9d026f591 X-VCS-Branch: master Date: Wed, 18 Aug 2021 19:39:27 +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: 46c1c5bb-f618-45bd-8b14-e5afdfa4a32e X-Archives-Hash: f9085e56f3c3fd4a2adc091b9a8496aa commit: 6d063e7a4a82ff651b950298756d74b9d026f591 Author: Niklāvs Koļesņikovs <89q1r14hd relay firefox com> AuthorDate: Tue Aug 17 14:00:57 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Aug 18 19:22:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d063e7a media-sound/pulseaudio: fixes unifdef failure This bug got introduced because no one tests system-wide setups. This is still untested but according to Ionen unifdef call should now fail if there wasn't anything to modify which is exactly what we want. Closes: https://bugs.gentoo.org/805488 Thanks-to: Ionen Wolkens gentoo.org> Signed-off-by: Niklāvs Koļesņikovs <89q1r14hd relay.firefox.com> Closes: https://github.com/gentoo/gentoo/pull/22013 Signed-off-by: Sam James gentoo.org> media-sound/pulseaudio/pulseaudio-15.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-sound/pulseaudio/pulseaudio-15.0.ebuild b/media-sound/pulseaudio/pulseaudio-15.0.ebuild index 1655c4644cf..b3e74c86cb1 100644 --- a/media-sound/pulseaudio/pulseaudio-15.0.ebuild +++ b/media-sound/pulseaudio/pulseaudio-15.0.ebuild @@ -268,7 +268,7 @@ multilib_src_install_all() { use "${1}" && echo "-D${define}" || echo "-U${define}" } - unifdef \ + unifdef -x 1 \ $(use_define zeroconf AVAHI) \ $(use_define alsa) \ $(use_define bluetooth) \