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 820B21382C5 for ; Fri, 25 Dec 2020 22:32:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB815E0C52; Fri, 25 Dec 2020 22:32:21 +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 8C456E0C52 for ; Fri, 25 Dec 2020 22:32:21 +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 3A336340EF9 for ; Fri, 25 Dec 2020 22:32:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B931CB8 for ; Fri, 25 Dec 2020 22:32:18 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1608935504.7d2ecca393148ac30882815ade02c4a8e2308dff.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/silo/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/silo/silo-1.4.14_p20200602.ebuild X-VCS-Directories: sys-boot/silo/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 7d2ecca393148ac30882815ade02c4a8e2308dff X-VCS-Branch: master Date: Fri, 25 Dec 2020 22:32:18 +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: d1f4f5ea-b157-4414-8ae2-247389aad0b1 X-Archives-Hash: 923b2ce0d22d9028c47b1f9e31f00fb9 commit: 7d2ecca393148ac30882815ade02c4a8e2308dff Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Dec 25 22:31:44 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Dec 25 22:31:44 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d2ecca3 sys-boot/silo: fix src_instal() Due to missing trailing '\' all arguments to `emake` were ignored. Bug: https://bugs.gentoo.org/759655 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sergei Trofimovich gentoo.org> sys-boot/silo/silo-1.4.14_p20200602.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-boot/silo/silo-1.4.14_p20200602.ebuild b/sys-boot/silo/silo-1.4.14_p20200602.ebuild index 42f7fc37254..6e6b9cd4d3f 100644 --- a/sys-boot/silo/silo-1.4.14_p20200602.ebuild +++ b/sys-boot/silo/silo-1.4.14_p20200602.ebuild @@ -42,7 +42,7 @@ _emake() { STRIP="$(tc-getSTRIP)" \ NM="$(tc-getNM)" \ LD="$(tc-getLD) -m elf32_sparc" \ - TILO_ONLY=$(usex tilo-only yes no) + TILO_ONLY=$(usex tilo-only yes no) \ \ "$@" } @@ -50,7 +50,7 @@ _emake() { src_compile() { filter-flags "-fstack-protector" - _emake $(usex tilo-only '-C tilo' '') + _emake } src_install() {