wrapQtAppsHook: use isELFExec

This ensures we only wrap executables, not shared libraries
This commit is contained in:
Florian Klink
2019-08-17 16:45:57 +02:00
parent e1b80a5a99
commit 88146a095f
@@ -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