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 71882138350 for ; Sat, 25 Apr 2020 21:23:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A89E1E0937; Sat, 25 Apr 2020 21:23:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 925A6E0937 for ; Sat, 25 Apr 2020 21:23:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8B30E34F02D for ; Sat, 25 Apr 2020 21:23:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D0D81C5 for ; Sat, 25 Apr 2020 21:23:13 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1587849788.2488d1377082ccd30cfaaeaaa916ddc8a1ab67b7.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mpv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mpv/mpv-0.32.0-r1.ebuild media-video/mpv/mpv-9999.ebuild X-VCS-Directories: media-video/mpv/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 2488d1377082ccd30cfaaeaaa916ddc8a1ab67b7 X-VCS-Branch: master Date: Sat, 25 Apr 2020 21:23:13 +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: d51f1ef4-6800-4b2f-bea8-9a552cbf0ef7 X-Archives-Hash: 91f5085c2d3854473e679737c035c801 commit: 2488d1377082ccd30cfaaeaaa916ddc8a1ab67b7 Author: Ilya Trukhanov gmail com> AuthorDate: Sat Apr 25 15:39:15 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Apr 25 21:23:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2488d137 media-video/mpv: fix build with USE=debug Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Ilya Trukhanov gmail.com> Closes: https://github.com/gentoo/gentoo/pull/14348 Signed-off-by: Mikle Kolyada gentoo.org> media-video/mpv/mpv-0.32.0-r1.ebuild | 2 +- media-video/mpv/mpv-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-video/mpv/mpv-0.32.0-r1.ebuild b/media-video/mpv/mpv-0.32.0-r1.ebuild index df53a7db5b1..eb6ccc9c653 100644 --- a/media-video/mpv/mpv-0.32.0-r1.ebuild +++ b/media-video/mpv/mpv-0.32.0-r1.ebuild @@ -162,7 +162,7 @@ src_configure() { --disable-static-build # See deep down below for build-date. --disable-optimize # Don't add '-O2' to CFLAGS. - $(use_enable debug debug-build) + $(usex debug '' '--disable-debug-build') $(use_enable doc html-build) $(use_enable doc pdf-build) diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index d6d2829b4b1..c714f2d8b0c 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -159,7 +159,7 @@ src_configure() { --disable-static-build # See deep down below for build-date. --disable-optimize # Don't add '-O2' to CFLAGS. - $(use_enable debug debug-build) + $(usex debug '' '--disable-debug-build') $(use_enable doc html-build) $(use_enable doc pdf-build)