Skip to content

Commit c194633

Browse files
author
psadi
committed
cp from lib if not avaialbe in lib64 path
1 parent 131a07e commit c194633

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ cd "${APP_DIR}"
7676
ldd ./usr/bin/ghostty | awk -F"[> ]" '{print $4}' | xargs -I {} cp --update=none -v {} ./usr/lib
7777

7878
if ! mv ./usr/lib/${ld_linux} ./ld-linux.so; then
79-
cp -v /lib64/${ld_linux} ./ld-linux.so
79+
cp -v /lib64/${ld_linux} ./ld-linux.so || cp -v /usr/lib/${ARCH}-linux-gnu/${ld_linux} ./ld-linux.so
8080
fi
8181

8282
# Prepare AppImage -- Configure launcher script, metainfo and desktop file with icon.

0 commit comments

Comments
 (0)