From 9f73861f9bc4f9b8c307ff68cca0ed00cc99b930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Tue, 12 May 2020 12:40:29 +0200 Subject: [PATCH] qtcreator: cannot build webengine for armv5tel* --- srcpkgs/qtcreator/template | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/srcpkgs/qtcreator/template b/srcpkgs/qtcreator/template index c7733f69e5a..baf4229e2e2 100644 --- a/srcpkgs/qtcreator/template +++ b/srcpkgs/qtcreator/template @@ -57,7 +57,11 @@ qtcreator-full_package() { qt5-plugin-mysql qt5-plugin-odbc qt5-plugin-pgsql qt5-plugin-sqlite qt5-plugin-tds" # Not for big endian targets and not if word sizes of host and target differ if [ "$XBPS_TARGET_ENDIAN" = "le" -a "$XBPS_TARGET_WORDSIZE" = "$XBPS_WORDSIZE" ]; then - depends+=" qt5-webengine-devel" + # qt5-webengine cannot be built for armv5tel + case "$XBPS_TARGET_MACHINE" in + armv5tel*) ;; + *) depends+=" qt5-webengine-devel" ;; + esac fi build_style=meta pkg_install() {