diff options
author | Ben Kohler <bkohler@gentoo.org> | 2022-01-18 07:08:05 -0600 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2022-01-18 07:08:58 -0600 |
commit | 8645afd6e52908bdd83edf6e324e53083acc0d4d (patch) | |
tree | e8fd6349ec287ce8c99a72dc7cc5be14da30dff5 /sys-apps/memtest86-bin | |
parent | app-admin/mcelog: drop old (diff) | |
download | gentoo-8645afd6e52908bdd83edf6e324e53083acc0d4d.tar.gz gentoo-8645afd6e52908bdd83edf6e324e53083acc0d4d.tar.bz2 gentoo-8645afd6e52908bdd83edf6e324e53083acc0d4d.zip |
sys-apps/memtest86-bin: fix unpack on musl
Apparently the order of arguments to fatcat is more sensitive on musl
Closes: https://bugs.gentoo.org/828826
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'sys-apps/memtest86-bin')
-rw-r--r-- | sys-apps/memtest86-bin/memtest86-bin-9.3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-apps/memtest86-bin/memtest86-bin-9.3.ebuild b/sys-apps/memtest86-bin/memtest86-bin-9.3.ebuild index 56e230d8e897..9e0a77415687 100644 --- a/sys-apps/memtest86-bin/memtest86-bin-9.3.ebuild +++ b/sys-apps/memtest86-bin/memtest86-bin-9.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -22,7 +22,7 @@ S=${WORKDIR} src_unpack() { default - fatcat memtest86-usb.img -O 1048576 -r /EFI/BOOT/BOOTX64.efi > ${PN}.efi || die + fatcat -O 1048576 -r /EFI/BOOT/BOOTX64.efi memtest86-usb.img > ${PN}.efi || die } src_install() { |