From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 052E11396D9 for ; Tue, 10 Oct 2017 11:22:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4AE592BC006; Tue, 10 Oct 2017 11:22:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 293D52BC006 for ; Tue, 10 Oct 2017 11:22:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CACB34105A for ; Tue, 10 Oct 2017 11:22:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6E259092 for ; Tue, 10 Oct 2017 11:22:49 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1507634559.abe13572ad37175b9a0c8f5e7ee2391e3f7cc007.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtlocation/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtlocation/qtlocation-5.9.2.ebuild X-VCS-Directories: dev-qt/qtlocation/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: abe13572ad37175b9a0c8f5e7ee2391e3f7cc007 X-VCS-Branch: master Date: Tue, 10 Oct 2017 11:22:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 19c8124c-b33d-49b5-a858-1d4a9d138930 X-Archives-Hash: 6d9354d8df1a54f64f7a685aa52cd0ea commit: abe13572ad37175b9a0c8f5e7ee2391e3f7cc007 Author: Michael Palimaka gentoo org> AuthorDate: Tue Oct 10 11:20:11 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue Oct 10 11:22:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abe13572 dev-qt/qtlocation: fix build of 5.9.2 Closes: https://bugs.gentoo.org/633776 Package-Manager: Portage-2.3.8, Repoman-2.3.3 dev-qt/qtlocation/qtlocation-5.9.2.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-qt/qtlocation/qtlocation-5.9.2.ebuild b/dev-qt/qtlocation/qtlocation-5.9.2.ebuild index 420e3c9ba78..06c3a9a1206 100644 --- a/dev-qt/qtlocation/qtlocation-5.9.2.ebuild +++ b/dev-qt/qtlocation/qtlocation-5.9.2.ebuild @@ -34,3 +34,11 @@ QT5_TARGET_SUBDIRS=( src/imports/location src/plugins/geoservices ) + +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}" + qt5-build_src_configure +}