diff options
author | 2023-07-08 22:47:46 +0200 | |
---|---|---|
committer | 2023-07-08 23:18:22 +0200 | |
commit | 831e459631b9c29dd49d7db8366bb79fc5aca49d (patch) | |
tree | a4d0cc6be238819e5dbed68ba016dc3044a90760 /dev-qt/qtlocation | |
parent | dev-qt/qdoc: Move quirk back into local src_configure() (diff) | |
download | gentoo-831e459631b9c29dd49d7db8366bb79fc5aca49d.tar.gz gentoo-831e459631b9c29dd49d7db8366bb79fc5aca49d.tar.bz2 gentoo-831e459631b9c29dd49d7db8366bb79fc5aca49d.zip |
dev-qt/qtlocation: Move quirk back into local src_configure()
Of course, qtlocation is not a qttools module, so qt5_tools_oos_quirk was
never executed. Solve this by making the eclass function public and call
qt5_configure_oos_quirk before qt5-build_src_configure.
Closes: https://bugs.gentoo.org/910066
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtlocation')
-rw-r--r-- | dev-qt/qtlocation/qtlocation-5.15.10.ebuild | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dev-qt/qtlocation/qtlocation-5.15.10.ebuild b/dev-qt/qtlocation/qtlocation-5.15.10.ebuild index b668a16694a3..419c78914928 100644 --- a/dev-qt/qtlocation/qtlocation-5.15.10.ebuild +++ b/dev-qt/qtlocation/qtlocation-5.15.10.ebuild @@ -49,3 +49,10 @@ src_prepare() { qt5-build_src_prepare } fi + +src_configure() { + # src/plugins/geoservices requires files that are only generated when + # qmake is run in the root directory. Bug 633776. + qt5_configure_oos_quirk qtlocation-config.pri src/location + qt5-build_src_configure +} |