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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 64395158020 for ; Tue, 27 Dec 2022 16:52:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 905F1E085A; Tue, 27 Dec 2022 16:52:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60A00E085A for ; Tue, 27 Dec 2022 16:52:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 810F733BE61 for ; Tue, 27 Dec 2022 16:52:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5AB0771 for ; Tue, 27 Dec 2022 16:52:04 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1672159712.9acd8ef9867c41398a6457a56e3aa7b6f6ac2c5d.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/syslinux/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/syslinux/syslinux-6.04_pre1-r5.ebuild sys-boot/syslinux/syslinux-6.04_pre3-r1.ebuild X-VCS-Directories: sys-boot/syslinux/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 9acd8ef9867c41398a6457a56e3aa7b6f6ac2c5d X-VCS-Branch: master Date: Tue, 27 Dec 2022 16:52:04 +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: 0ead865f-4e45-4010-a3f3-d4724643a7f2 X-Archives-Hash: ab73f5bd0a24cca99a1750a694f420e3 commit: 9acd8ef9867c41398a6457a56e3aa7b6f6ac2c5d Author: Mike Gilbert gentoo org> AuthorDate: Tue Dec 27 16:47:43 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Dec 27 16:48:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9acd8ef9 sys-boot/syslinux: fix install with bios disabled Closes: https://bugs.gentoo.org/888466 Signed-off-by: Mike Gilbert gentoo.org> sys-boot/syslinux/syslinux-6.04_pre1-r5.ebuild | 4 +++- sys-boot/syslinux/syslinux-6.04_pre3-r1.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-boot/syslinux/syslinux-6.04_pre1-r5.ebuild b/sys-boot/syslinux/syslinux-6.04_pre1-r5.ebuild index df1dd06bfa03..61289b005cc2 100644 --- a/sys-boot/syslinux/syslinux-6.04_pre1-r5.ebuild +++ b/sys-boot/syslinux/syslinux-6.04_pre1-r5.ebuild @@ -80,7 +80,9 @@ src_install() { install ) emake -j1 "${args[@]}" - mv "${ED}"/usr/bin/keytab-{lilo,syslinux} || die + if use bios; then + mv "${ED}"/usr/bin/keytab-{lilo,syslinux} || die + fi einstalldocs dostrip -x /usr/share/syslinux } diff --git a/sys-boot/syslinux/syslinux-6.04_pre3-r1.ebuild b/sys-boot/syslinux/syslinux-6.04_pre3-r1.ebuild index a942b7d05b86..e42f6139206e 100644 --- a/sys-boot/syslinux/syslinux-6.04_pre3-r1.ebuild +++ b/sys-boot/syslinux/syslinux-6.04_pre3-r1.ebuild @@ -97,7 +97,9 @@ src_install() { install ) emake -j1 "${args[@]}" - mv "${ED}"/usr/bin/keytab-{lilo,syslinux} || die + if use bios; then + mv "${ED}"/usr/bin/keytab-{lilo,syslinux} || die + fi einstalldocs dostrip -x /usr/share/syslinux }