diff --git a/temp/plasma-workspace/APKBUILD b/temp/plasma-workspace/APKBUILD index b8e0f486b..0db5d93e4 100644 --- a/temp/plasma-workspace/APKBUILD +++ b/temp/plasma-workspace/APKBUILD @@ -87,7 +87,10 @@ prepare() { # qmlplugindump fails for armv7+qemu (pmb#1970). This is purely for # packager knowledge and doesn't affect runtime, so we can disable it. if [ "$CARCH" = "armv7" ]; then - sed -i "s/ecm_find_qmlmodule/# ecm_find_qmlmodule/g" CMakeLists.txt + for i in $(find -name CMakeLists.txt); do + echo "Disabling ecm_find_qmlmodule in: $i" + sed -i "s/ecm_find_qmlmodule/# ecm_find_qmlmodule/g" "$i" + done fi }