qtcreator: build for arm* w/o qt5-webengine
Since our builders still try to build packages for 32bit arm* architectures in an x86_64 environment, they won't build qt5-webengine. Therefore make qtcreator-full depend on qt5-webeninge only for cases where it should be available.
This commit is contained in:
parent
b2b9a20515
commit
3a1005c01e
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ qtcreator-full_package() {
|
|||
qt5-x11extras-devel qt5-xmlpatterns-devel qt5-tools-devel qt5-host-tools
|
||||
qt5-examples qt5-imageformats qt5-graphicaleffects qt5-translations
|
||||
qt5-plugin-mysql qt5-plugin-odbc qt5-plugin-pgsql qt5-plugin-sqlite qt5-plugin-tds"
|
||||
if [ "$XBPS_TARGET_ENDIAN" = "le" ]; then
|
||||
# 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"
|
||||
fi
|
||||
build_style=meta
|
||||
|
|
Loading…
Reference in a new issue