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 E2172138334 for ; Sun, 19 May 2019 15:42:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C352BE087C; Sun, 19 May 2019 15:42:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 AC168E087C for ; Sun, 19 May 2019 15:42:29 +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 F208C344AC7 for ; Sun, 19 May 2019 15:42:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 010BA5F2 for ; Sun, 19 May 2019 15:42:24 +0000 (UTC) From: "Ralph Seichter" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ralph Seichter" Message-ID: <1558237718.7583115ff97af20a831e9d17540faf1b808e11ff.ralph-seichter@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-lang/fbc/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/fbc/fbc-1.06.0.ebuild X-VCS-Directories: dev-lang/fbc/ X-VCS-Committer: ralph-seichter X-VCS-Committer-Name: Ralph Seichter X-VCS-Revision: 7583115ff97af20a831e9d17540faf1b808e11ff X-VCS-Branch: master Date: Sun, 19 May 2019 15:42:24 +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: d28e4528-35b5-4305-84ed-55870fcf53da X-Archives-Hash: f2f405ae0f7b6e223c2c3704c06eabc8 commit: 7583115ff97af20a831e9d17540faf1b808e11ff Author: William Breathitt Gray gmail com> AuthorDate: Sun May 19 03:48:38 2019 +0000 Commit: Ralph Seichter seichter de> CommitDate: Sun May 19 03:48:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7583115f dev-lang/fbc: Support cross-compilation Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: William Breathitt Gray gmail.com> dev-lang/fbc/fbc-1.06.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/fbc/fbc-1.06.0.ebuild b/dev-lang/fbc/fbc-1.06.0.ebuild index 8d4c389..11efb62 100644 --- a/dev-lang/fbc/fbc-1.06.0.ebuild +++ b/dev-lang/fbc/fbc-1.06.0.ebuild @@ -84,10 +84,10 @@ src_compile() { local fblflags=${LDFLAGS//-Wl,/-Wl } # Build fbc - emake CFLAGS="${CFLAGS} ${xcflags[*]}" FBC="${fbc}" FBCFLAGS="${fbcflags}" FBLFLAGS="${fblflags}" + emake CFLAGS="${CFLAGS} ${xcflags[*]}" FBC="${fbc}" FBCFLAGS="${fbcflags}" FBLFLAGS="${fblflags}" TARGET=${CHOST} } src_install() { - emake DESTDIR="${D}" prefix="/usr" install + emake DESTDIR="${D}" prefix="/usr" TARGET=${CHOST} install einstalldocs }