From ff000af8a83d992f160b7e89c8d6fd6d7e9ef6a3 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Wed, 3 Feb 2021 16:34:41 +0100 Subject: [PATCH] temp/plasma-workspace: armv7: remove all ecm_find_qmlmodule Seems there are more places where ecm_find_qmlmodule is used To fix the build from failing on armv7 we should disable them all [ci:skip-build]: don't try to build all depends, takes too long [ci:skip-vercheck]: unblocking armv7 build, no need to bump pkgrel --- temp/plasma-workspace/APKBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 }