Skip to content

Commit 1f9a50d

Browse files
committed
maybe this one will work
1 parent 539c3cf commit 1f9a50d

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

create_appimage.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ cp DECtalk.conf appdir/
1717
cp -rf dic appdir/
1818
chmod +x appdir/AppRun
1919

20-
ldd appdir/usr/bin/speak | -E grep "=>|ld-" | awk '{print $3}' | while read a; do
20+
ldd appdir/usr/bin/speak | grep "=>" | awk '{print $3}' | while read a; do
21+
if [ -f "$a" ]; then
22+
cp "$a" appdir/usr/lib/
23+
fi
24+
done
25+
ldd appdir/usr/bin/speak | grep "ld-" | awk '{print $1}' | while read a; do
2126
if [ -f "$a" ]; then
2227
cp "$a" appdir/usr/lib/
2328
fi

0 commit comments

Comments
 (0)