Merge pull request #69173 from worldofpeace/wrap-qt-apps/fix

wrapQtAppsHook: correct skip directories heuristic
This commit is contained in:
worldofpeace 2019-09-21 14:30:36 -04:00 committed by GitHub
commit 038f02d79e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,7 +80,7 @@ wrapQtAppsHook() {
do
[ -d "$targetDir" ] || continue
find "$targetDir" -type f -executable -print0 | while IFS= read -r -d '' file
find "$targetDir" ! -type d -executable -print0 | while IFS= read -r -d '' file
do
patchelf --print-interpreter "$file" >/dev/null 2>&1 || continue