From 7db10403468fab512de45ccfaca8f0579f6ea6d9 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Fri, 27 Aug 2021 02:05:45 -0400 Subject: [PATCH] deinterlace: Use proper ASM output format for *BSD OS FreeBSD/NetBSD/OpenBSD amd64 use the ELF binary format. Part-of: --- gst/deinterlace/meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst/deinterlace/meson.build b/gst/deinterlace/meson.build index 5eae029ebb..e86bebe613 100644 --- a/gst/deinterlace/meson.build +++ b/gst/deinterlace/meson.build @@ -65,8 +65,6 @@ if have_nasm and host_cpu == 'x86_64' asm_outformat = 'win64' elif ['darwin', 'ios'].contains(host_system) asm_outformat = 'macho64' - elif host_system.endswith('bsd') - asm_outformat = 'aoutb' else asm_outformat = 'elf64' endif