Skip to content

Commit

Permalink
create-appimage.sh: do not exclude libpipewire-0.3.so.0
Browse files Browse the repository at this point in the history
ilibpipewire-0.3.so.0 was added to excludelist causing the distcheck fail,
see [1]

We do not need to exclude the lib, because we already handle the preload
in data/scripts/Linux-AppImage/AppRun:282 (the case is similar as for
libjack.so.0 as also mentioned in the related AppImage issue).

[1]:
AppImageCommunity/pkg2appimage@04af461
  • Loading branch information
MartinPulec committed Aug 28, 2024
1 parent b7edb45 commit 9fd5b7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion data/scripts/Linux-AppImage/create-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ while read -r x; do
EXCLUDE_LIST="$EXCLUDE_LIST $NAME"
done < excludelist
for n in $EXCLUDE_LIST; do
if [ "$n" = libjack.so.0 ]; then # JACK is currently handled in AppRun
# these dependencies preloaded by AppRun if found in system - include
# them for the cases when isn't
if [ "$n" = libjack.so.0 ] || [ "$n" = libpipewire-0.3.so.0 ]; then
continue
fi
if [ -f "$APPPREFIX/lib/$n" ]; then
Expand Down

0 comments on commit 9fd5b7a

Please sign in to comment.