summaryrefslogtreecommitdiffstats
path: root/src/qtxmlpatterns.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/qtxmlpatterns.mk')
-rw-r--r--src/qtxmlpatterns.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qtxmlpatterns.mk b/src/qtxmlpatterns.mk
index 93506f6..495c9db 100644
--- a/src/qtxmlpatterns.mk
+++ b/src/qtxmlpatterns.mk
@@ -15,8 +15,9 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake'
+ # invoke qmake with removed debug options as a workaround for
+ # https://bugreports.qt-project.org/browse/QTBUG-30898
+ cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake' CONFIG-='debug debug_and_release'
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install
endef
-