Fix linux installer script

This commit is contained in:
Robin Gareus 2020-01-03 04:33:33 +01:00
parent 241a16717e
commit 4c055f3469
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 3 additions and 3 deletions

View File

@ -225,7 +225,7 @@ case `uname -m` in
echo "Architecture is armhf"
ARCH='armhf'
NOABICHECK=1
;;;
;;
aarch64|armv8b)
echo "Architecture is arm64"
ARCH='arm64'
@ -489,7 +489,7 @@ LIB_ERROR="F"
LD_PATH=`pwd`/${BUNDLE_DIR}/lib
# check the main App
LDD_RESULT=$(LD_LIBRARY_PATH=${LD_PATH} ldd ${BUNDLE_DIR}/bin/${PGM_NAME_LOWER}-* 2>&1 > /dev/null | grep -v "no version information")
LDD_RESULT=$(LD_LIBRARY_PATH=${LD_PATH} ldd ${BUNDLE_DIR}/*/${PGM_NAME_LOWER}-* 2>&1 > /dev/null | grep -v "no version information")
if [ -n "$LDD_RESULT" ];
then
@ -498,7 +498,7 @@ then
fi
# check the libs
LIB_FILES=$(find ${BUNDLE_DIR}/lib -name "*.so")
LIB_FILES=$(find ${BUNDLE_DIR}/lib -name "*.so" -type f)
for path in $LIB_FILES
do