From 4908d382ae1eb9f618ea8745cb6794db1dba9520 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 16 Jul 2019 20:37:43 -0400 Subject: [PATCH] wrapQtAppsHook: remove isQtApp This was preventing dolphin from being wrapped. --- pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh index bf7b07e2549c..775922c1f4c4 100644 --- a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh +++ b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh @@ -64,10 +64,6 @@ qtOwnPathsHook() { preFixupPhases+=" qtOwnPathsHook" -isQtApp () { - readelf -d "$1" 2>/dev/null | grep -q -F 'libQt5Core' -} - # Note: $qtWrapperArgs still gets defined even if $dontWrapQtApps is set. wrapQtAppsHook() { # skip this hook when requested @@ -86,8 +82,6 @@ wrapQtAppsHook() { find "$targetDir" -executable -print0 | while IFS= read -r -d '' file do - isQtApp "$file" || continue - if [ -f "$file" ] then echo "wrapping $file"