diff options
author | Moritz Bunkus <moritz@bunkus.org> | 2015-07-04 12:56:34 (GMT) |
---|---|---|
committer | Moritz Bunkus <moritz@bunkus.org> | 2015-07-04 12:56:34 (GMT) |
commit | 263b98a435b2487dda36109dda04bc920b384627 (patch) | |
tree | 5eb4ecc677f210cb12e9ab8844e3e8c4ad6ef213 /src/qtmultimedia.mk | |
parent | 85d6e37e9f7306ed3f9e37c6963ef42a764c38e6 (diff) | |
download | mxe-263b98a435b2487dda36109dda04bc920b384627.zip mxe-263b98a435b2487dda36109dda04bc920b384627.tar.gz mxe-263b98a435b2487dda36109dda04bc920b384627.tar.bz2 |
various qt packages: fix libraries having debug postfix in pkg-config files
qmake is invoked with removed debug options as a workaround for
https://bugreports.qt-project.org/browse/QTBUG-30898
This fix uses the same mechanism used for qtbase.mk in b30e9d41.
Diffstat (limited to 'src/qtmultimedia.mk')
-rw-r--r-- | src/qtmultimedia.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qtmultimedia.mk b/src/qtmultimedia.mk index 6805e52..c2f1fb1 100644 --- a/src/qtmultimedia.mk +++ b/src/qtmultimedia.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 - |