Skip to content

Commit 842a242

Browse files
committed
create-appimage.sh: do not exclude libpipewire-0.3.so.0
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
1 parent 79ad942 commit 842a242

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

data/scripts/Linux-AppImage/create-appimage.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ while read -r x; do
120120
EXCLUDE_LIST="$EXCLUDE_LIST $NAME"
121121
done < excludelist
122122
for n in $EXCLUDE_LIST; do
123-
if [ "$n" = libjack.so.0 ]; then # JACK is currently handled in AppRun
123+
# these dependencies preloaded by AppRun if found in system - include
124+
# them for the cases when isn't
125+
if [ "$n" = libjack.so.0 ] || [ "$n" = libpipewire-0.3.so.0 ]; then
124126
continue
125127
fi
126128
if [ -f "$APPPREFIX/lib/$n" ]; then

0 commit comments

Comments
 (0)