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
This commit is contained in:
parent
bb5731fc5a
commit
ff000af8a8
1 changed files with 4 additions and 1 deletions
|
@ -87,7 +87,10 @@ prepare() {
|
||||||
# qmlplugindump fails for armv7+qemu (pmb#1970). This is purely for
|
# qmlplugindump fails for armv7+qemu (pmb#1970). This is purely for
|
||||||
# packager knowledge and doesn't affect runtime, so we can disable it.
|
# packager knowledge and doesn't affect runtime, so we can disable it.
|
||||||
if [ "$CARCH" = "armv7" ]; then
|
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
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue