summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-08-21 08:26:54 +0200
committerJoonas Niilola <juippis@gentoo.org>2024-08-21 10:24:07 +0300
commitc6704daf58e74a2f365e12c09cde14dfc009c544 (patch)
treef7eb6701d53f8f3c712f2c2f4751cfe6abf795e8 /sys-apps
parentdev-build/meson: Stabilize 1.4.2 ppc64, #938244 (diff)
downloadgentoo-c6704daf58e74a2f365e12c09cde14dfc009c544.tar.gz
gentoo-c6704daf58e74a2f365e12c09cde14dfc009c544.tar.bz2
gentoo-c6704daf58e74a2f365e12c09cde14dfc009c544.zip
sys-apps/fwupd-efi: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/fwupd-efi/files/fwupd-efi-1.4-efi_ld_override.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/sys-apps/fwupd-efi/files/fwupd-efi-1.4-efi_ld_override.patch b/sys-apps/fwupd-efi/files/fwupd-efi-1.4-efi_ld_override.patch
deleted file mode 100644
index 0b703a41d2e6..000000000000
--- a/sys-apps/fwupd-efi/files/fwupd-efi-1.4-efi_ld_override.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/efi/meson.build
-+++ b/efi/meson.build
-@@ -1,6 +1,7 @@
- generate_sbat = find_program('generate_sbat.py', native: true)
- generate_binary = find_program('generate_binary.py', native: true)
-
-+efi_ld = get_option('efi-ld')
- efi_ldsdir = get_option('efi-ldsdir')
- efi_incdir = get_option('efi-includedir')
-
-@@ -226,7 +227,7 @@
- so = custom_target('fwup.so',
- input : [o_file1, o_file2, o_file3, o_file4, o_file5],
- output : 'fwup.so',
-- command : [ld, '-o', '@OUTPUT@'] +
-+ command : [efi_ld, '-o', '@OUTPUT@'] +
- efi_ldflags + ['@INPUT@'] +
- ['-lefi', '-lgnuefi', libgcc_file_name],
- depends: fwupd_so_deps)
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -1,3 +1,4 @@
-+option('efi-ld', type : 'string', value : 'ld', description : 'the linker to use for EFI modules')
- option('efi-libdir', type : 'string', description : 'path to the EFI lib directory')
- option('efi-ldsdir', type : 'string', description : 'path to the EFI lds directory')
- option('efi-includedir', type : 'string', value : '/usr/include/efi', description : 'path to the EFI header directory')