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 8E3B11382C5 for ; Fri, 25 Dec 2020 17:47:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAEFAE09D4; Fri, 25 Dec 2020 17:47:00 +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 9C78EE09D4 for ; Fri, 25 Dec 2020 17:47:00 +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 9D449340F7A for ; Fri, 25 Dec 2020 17:46:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24AAE50 for ; Fri, 25 Dec 2020 17:46:57 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1608918405.092c90bb92aafc56f02992544bff648bc4bfc05c.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tcl3d/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tcltk/tcl3d/tcl3d-0.5.0.ebuild X-VCS-Directories: dev-tcltk/tcl3d/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 092c90bb92aafc56f02992544bff648bc4bfc05c X-VCS-Branch: master Date: Fri, 25 Dec 2020 17:46:57 +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: cf146bec-cb5a-4943-9c87-687c8410afc4 X-Archives-Hash: 747aff1989b3231172d61acfd1da7a23 commit: 092c90bb92aafc56f02992544bff648bc4bfc05c Author: Alfredo Tupone gentoo org> AuthorDate: Fri Dec 25 17:46:45 2020 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Fri Dec 25 17:46:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=092c90bb dev-tcltk/tcl3d: calling cc from environment Closes: https://bugs.gentoo.org/748447 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> dev-tcltk/tcl3d/tcl3d-0.5.0.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-tcltk/tcl3d/tcl3d-0.5.0.ebuild b/dev-tcltk/tcl3d/tcl3d-0.5.0.ebuild index 8f84663373e..f24710e3f1e 100644 --- a/dev-tcltk/tcl3d/tcl3d-0.5.0.ebuild +++ b/dev-tcltk/tcl3d/tcl3d-0.5.0.ebuild @@ -67,6 +67,8 @@ src_compile() { CXX="$(tc-getCXX) -c" \ LD="$(tc-getLD)" \ LDOUT="${LDFLAGS} -o" \ + SHLIB_LD="$(tc-getCC) -shared" \ + SHLIB_LDXX="$(tc-getCXX) -shared" \ ${CONFIG_PLUGIN} }