Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/silo/
Date: Fri, 25 Dec 2020 22:32:22
Message-Id: 1608935504.7d2ecca393148ac30882815ade02c4a8e2308dff.slyfox@gentoo
1 commit: 7d2ecca393148ac30882815ade02c4a8e2308dff
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 25 22:31:44 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 25 22:31:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d2ecca3
7
8 sys-boot/silo: fix src_instal()
9
10 Due to missing trailing '\' all arguments to `emake` were ignored.
11
12 Bug: https://bugs.gentoo.org/759655
13 Package-Manager: Portage-3.0.12, Repoman-3.0.2
14 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
15
16 sys-boot/silo/silo-1.4.14_p20200602.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/sys-boot/silo/silo-1.4.14_p20200602.ebuild b/sys-boot/silo/silo-1.4.14_p20200602.ebuild
20 index 42f7fc37254..6e6b9cd4d3f 100644
21 --- a/sys-boot/silo/silo-1.4.14_p20200602.ebuild
22 +++ b/sys-boot/silo/silo-1.4.14_p20200602.ebuild
23 @@ -42,7 +42,7 @@ _emake() {
24 STRIP="$(tc-getSTRIP)" \
25 NM="$(tc-getNM)" \
26 LD="$(tc-getLD) -m elf32_sparc" \
27 - TILO_ONLY=$(usex tilo-only yes no)
28 + TILO_ONLY=$(usex tilo-only yes no) \
29 \
30 "$@"
31 }
32 @@ -50,7 +50,7 @@ _emake() {
33 src_compile() {
34 filter-flags "-fstack-protector"
35
36 - _emake $(usex tilo-only '-C tilo' '')
37 + _emake
38 }
39
40 src_install() {