app-arch/wimlib: add correct gentoo path to syslinux files

Closes: https://bugs.gentoo.org/669370
Signed-off-by: Slawek Lis <slis@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
This commit is contained in:
Slawomir Lis
2018-11-03 18:49:45 +01:00
parent 15110b3eeb
commit f6b790694c
2 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
--- a/programs/mkwinpeimg 2017-07-29 13:52:09.000000000 -0700
+++ b/programs/mkwinpeimg 2018-10-22 19:14:35.170566559 -0700
@@ -488,7 +488,8 @@
for biosdir in \
/usr/lib/syslinux/modules/bios \
/usr/lib/syslinux/bios \
- /usr/lib/syslinux
+ /usr/lib/syslinux \
+ /usr/share/syslinux
do
if [ -e "$biosdir/chain.c32" ]; then
break
--- a/programs/mkwinpeimg.in 2017-07-15 13:49:06.000000000 -0700
+++ b/programs/mkwinpeimg.in 2018-10-22 19:16:59.323070604 -0700
@@ -488,7 +488,8 @@
for biosdir in \
/usr/lib/syslinux/modules/bios \
/usr/lib/syslinux/bios \
- /usr/lib/syslinux
+ /usr/lib/syslinux \
+ /usr/share/syslinux
do
if [ -e "$biosdir/chain.c32" ]; then
break

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -24,6 +24,8 @@ SLOT="0"
IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl threads yasm"
REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
PATCHES=( "${FILESDIR}/syslinux-path.patch" )
RDEPEND="
dev-libs/libxml2:2
ntfs? ( sys-fs/ntfs3g )