1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

emulators/higan: Don't call bfd linker

Use Clang's native linker instead of bfd to avoid build failure

Approved by:	portmgr (blanket, build fix)
This commit is contained in:
Daniel Engberg 2023-12-26 09:23:47 +01:00
parent b3604071e1
commit f43d8771f0

View File

@ -0,0 +1,11 @@
--- ruby/GNUmakefile.orig 2023-12-26 07:36:47 UTC
+++ ruby/GNUmakefile
@@ -65,7 +65,7 @@ ifeq ($(platform),bsd)
ifeq ($(platform),bsd)
ruby.options += -lX11 -lXext -lXrandr
- ruby.options += $(if $(findstring audio.openal,$(ruby)),-lopenal -fuse-ld=bfd)
+ ruby.options += $(if $(findstring audio.openal,$(ruby)),-lopenal)
# -fuse-ld=bfd: see FreeBSD bug 219089
endif