ports/emulators/higan/files/patch-ruby_GNUmakefile
Daniel Engberg f43d8771f0 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)
2023-12-26 09:23:52 +01:00

11 lines
381 B
Text

--- 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