File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -518,14 +518,9 @@ jobs:
518518 otool -L "$BINARY" 2>/dev/null | grep -E "(@rpath|/Library/Frameworks/GStreamer.framework)" | awk '{print $1}' | while read dep; do
519519 if [[ -n "$dep" ]]; then
520520 lib_name=$(basename "$dep")
521- # Only fix if this library exists in our bundle
522- if [[ -f "$BUNDLE_LIB_DIR/$lib_name" ]]; then
523- new_path="@executable_path/gstreamer/lib/$lib_name"
524- echo " Changing: $dep -> $new_path"
525- install_name_tool -change "$dep" "$new_path" "$BINARY" 2>/dev/null || true
526- else
527- echo " Skipping $dep (not in bundle)"
528- fi
521+ new_path="@executable_path/gstreamer/lib/$lib_name"
522+ echo " Changing: $dep -> $new_path"
523+ install_name_tool -change "$dep" "$new_path" "$BINARY" 2>/dev/null || true
529524 fi
530525 done
531526 else
You can’t perform that action at this time.
0 commit comments