Skip to content

Commit

Permalink
Fix runpath for QML
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 committed Apr 13, 2024
1 parent 1096e74 commit ba206ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux-appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
do
# Check if elf is an executable
if file "${elf}" | grep -q ELF; then
path_to_lib=$(realpath --relative-to="$(dirname "${elf}")" ./appdir/usr)
path_to_lib=$(realpath --relative-to="$(dirname "${elf}")" ./appdir/usr/lib)
echo "Setting RUNPATH of ${elf} to ${path_to_lib}"
patchelf --set-rpath "${path_to_lib}" "${elf}"
fi
Expand Down

0 comments on commit ba206ca

Please sign in to comment.