We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f20246 commit c5a3407Copy full SHA for c5a3407
linuxdeploy-plugin-gstreamer.sh
@@ -107,6 +107,7 @@ done
107
for i in "$plugins_target_dir"/*; do
108
[ -d "$i" ] && continue
109
[ ! -f "$i" ] && echo "File does not exist: $i" && continue
110
+ "$(file "$i" | grep -v ELF --silent)" && echo "Ignoring non ELF file: $i" && continue
111
112
echo "Manually setting rpath for $i"
113
patchelf --set-rpath '$ORIGIN/..:$ORIGIN' "$i"
@@ -126,6 +127,7 @@ done
126
127
for i in "$helpers_target_dir"/*; do
128
129
130
131
132
133
patchelf --set-rpath '$ORIGIN/../..' "$i"
0 commit comments