diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-10 10:37:14 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-10 10:37:56 +0200 |
commit | bda3ec7f17d830ea56f5eb09fe42e0e61eaf14c5 (patch) | |
tree | c0c80bbd02b93dd19aa941638b50aca60b5164df /dev-qt/qtlocation | |
parent | net-libs/libupnp: Version bump: 1.12.1, 1.8.7 (diff) | |
download | gentoo-bda3ec7f17d830ea56f5eb09fe42e0e61eaf14c5.tar.gz gentoo-bda3ec7f17d830ea56f5eb09fe42e0e61eaf14c5.tar.bz2 gentoo-bda3ec7f17d830ea56f5eb09fe42e0e61eaf14c5.zip |
dev-qt/qtlocation: Fix src_configure for out-of-source build
Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtlocation')
-rw-r--r-- | dev-qt/qtlocation/qtlocation-5.14.2.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev-qt/qtlocation/qtlocation-5.14.2.ebuild b/dev-qt/qtlocation/qtlocation-5.14.2.ebuild index 838cb1e243ac..07669c361d64 100644 --- a/dev-qt/qtlocation/qtlocation-5.14.2.ebuild +++ b/dev-qt/qtlocation/qtlocation-5.14.2.ebuild @@ -40,7 +40,8 @@ QT5_TARGET_SUBDIRS=( src_configure() { # src/plugins/geoservices requires files that are only generated when # qmake is run in the root directory. Bug 633776. - mkdir -p "${QT5_BUILD_DIR}" || die - qt5_qmake "${QT_BUILD_DIR}" + mkdir -p "${QT5_BUILD_DIR}"/src/location || die + qt5_qmake "${QT5_BUILD_DIR}" + cp src/location/qtlocation-config.pri "${QT5_BUILD_DIR}"/src/location || die qt5-build_src_configure } |