summaryrefslogtreecommitdiffstats
path: root/src/qtlocation.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/qtlocation.mk')
-rw-r--r--src/qtlocation.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qtlocation.mk b/src/qtlocation.mk
index a9cf45d..b48892a 100644
--- a/src/qtlocation.mk
+++ b/src/qtlocation.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
-