Skip to content
Snippets Groups Projects
Commit 0b72ae60 authored by David's avatar David Committed by David
Browse files

bin: Add Frameworks directory to vlc-osx RPATH

vlc-osx is used to generate the final VLC executable, and therefore
the RPATH to the Frameworks directory is needed as well, in order
to find the Sparkle framework.

Followup fix for !1155.
parent 80742f9a
No related branches found
Tags 0.5.0
2 merge requests!3533Backport MR 3236 to 3.0.x,!1168[3.0.x] bin: Add Frameworks directory to vlc-osx RPATH
Pipeline #179048 passed with stages
in 37 minutes and 34 seconds
......@@ -49,6 +49,7 @@ vlc_osx_SOURCES = darwinvlc.m
vlc_osx_LDFLAGS = $(LDFLAGS_vlc) -Wl,-framework,CoreFoundation,-framework,Cocoa
vlc_osx_LDFLAGS += -Xlinker -rpath -Xlinker "@executable_path/lib/"
vlc_osx_LDFLAGS += -Xlinker -rpath -Xlinker "@executable_path/plugins/"
vlc_osx_LDFLAGS += -Xlinker -rpath -Xlinker "@executable_path/../Frameworks/"
if HAVE_BREAKPAD
vlc_osx_LDFLAGS += -Wl,-framework,Breakpad
vlc_osx_OBJCFLAGS = -F$(CONTRIB_DIR)/Frameworks
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment