diff options
Diffstat (limited to 'src/qtquickcontrols.mk')
-rw-r--r-- | src/qtquickcontrols.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qtquickcontrols.mk b/src/qtquickcontrols.mk index b31c860..cf97369 100644 --- a/src/qtquickcontrols.mk +++ b/src/qtquickcontrols.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 - |