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 26376138350 for ; Fri, 10 Apr 2020 08:38:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26EB5E0931; Fri, 10 Apr 2020 08:38:21 +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 08B9BE0931 for ; Fri, 10 Apr 2020 08:38:20 +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 BAF7F34EDEC for ; Fri, 10 Apr 2020 08:38:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E48C71 for ; Fri, 10 Apr 2020 08:38:18 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1586507876.bda3ec7f17d830ea56f5eb09fe42e0e61eaf14c5.asturm@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.14.2.ebuild X-VCS-Directories: dev-qt/qtlocation/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bda3ec7f17d830ea56f5eb09fe42e0e61eaf14c5 X-VCS-Branch: master Date: Fri, 10 Apr 2020 08:38:18 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cc7a074d-b48f-402a-b4b6-60808b2d4112 X-Archives-Hash: ea2f1e4a5098294ba3ea36fab11b100b commit: bda3ec7f17d830ea56f5eb09fe42e0e61eaf14c5 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Apr 10 08:37:14 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Apr 10 08:37:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bda3ec7f 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 gentoo.org> dev-qt/qtlocation/qtlocation-5.14.2.ebuild | 5 +++-- 1 file 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 838cb1e243a..07669c361d6 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 }