commit: 7d2ecca393148ac30882815ade02c4a8e2308dff Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Fri Dec 25 22:31:44 2020 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> 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 <slyfox <AT> 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() {
