wrapQtAppsHook: use isELFExec

This ensures we only wrap executables, not shared libraries
This commit is contained in:
Florian Klink 2019-08-16 15:48:59 +02:00
parent e1b80a5a99
commit 88146a095f

View File

@ -82,7 +82,7 @@ wrapQtAppsHook() {
find "$targetDir" -executable -print0 | while IFS= read -r -d '' file
do
isELF "$file" || continue
isELFExec "$file" || continue
if [ -f "$file" ]
then