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 E6015138359 for ; Tue, 27 Oct 2020 05:54:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C261E088C; Tue, 27 Oct 2020 05:54:17 +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 00689E088C for ; Tue, 27 Oct 2020 05:54:16 +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 55B8A335D93 for ; Tue, 27 Oct 2020 05:54:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7AAF3BC for ; Tue, 27 Oct 2020 05:54:13 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1603778029.9352a2289f6524445400c99030d231596e7f8ac1.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtgvoip/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild media-libs/libtgvoip/libtgvoip-2.4.4_p20200818.ebuild X-VCS-Directories: media-libs/libtgvoip/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 9352a2289f6524445400c99030d231596e7f8ac1 X-VCS-Branch: master Date: Tue, 27 Oct 2020 05:54: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: 97961e1c-6348-4712-b183-a63b159a2b14 X-Archives-Hash: 46be60f913a23ba2bdcddf92f73f68a1 commit: 9352a2289f6524445400c99030d231596e7f8ac1 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Oct 27 05:51:10 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Oct 27 05:53:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9352a228 media-libs/libtgvoip: don't fail with CC/CXX set Closes: https://bugs.gentoo.org/717210 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev gentoo.org> media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild | 1 + media-libs/libtgvoip/libtgvoip-2.4.4_p20200818.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild index cd168857e57..f5907df6536 100644 --- a/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild +++ b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild @@ -33,6 +33,7 @@ S="${WORKDIR}/${PN}-${EGIT_COMMIT}" src_prepare() { default sed -i 's/-std=gnu++0x/-std=gnu++17/' Makefile.am || die + echo 'libtgvoip_la_LIBTOOLFLAGS="--tag=CXX"' >> Makefile.am || die eautoreconf } diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20200818.ebuild b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200818.ebuild index 04ac80855ec..addbb4c5187 100644 --- a/media-libs/libtgvoip/libtgvoip-2.4.4_p20200818.ebuild +++ b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200818.ebuild @@ -33,6 +33,7 @@ S="${WORKDIR}/${PN}-${EGIT_COMMIT}" src_prepare() { default sed -i 's/-std=gnu++0x/-std=gnu++17/' Makefile.am || die + echo 'libtgvoip_la_LIBTOOLFLAGS="--tag=CXX"' >> Makefile.am || die eautoreconf }