Compare commits

..

No commits in common. "aea0068cc36746bdf056f5ecafc433b9e6d217ef" and "f2d0a935450503f812f1ab874529477a4208f137" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View File

@ -18,4 +18,4 @@ Usage: ./packelf-appimage.sh <ELF_SRC_PATH> <ELF_DST_PATH>
* chmod
* appimagetool (https://github.com/AppImage/appimagetool/releases)
* ldd (only needed for packing, not needed for executing or unpacking)
* fusermount (only for executing)

View File

@ -73,10 +73,6 @@ if [ ! -z "${1}" ] ; then
ld_so="$(echo "$libs" | grep -F '/ld-linux-' || echo "$libs" | grep -F '/ld-musl-')"
ld_so="$(basename "$ld_so")"
program="$(basename "${1}")"
if [ -z "${libs}" ] ; then
echo "${0}: Not a dynamic executable"
exit 1
fi
fi
else
echo "Usage: ${0} <ELF_SRC_PATH> <ELF_DST_PATH>"