From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E457913800E for ; Thu, 9 Aug 2012 08:04:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEE79E0684; Thu, 9 Aug 2012 08:04:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9299CE0684 for ; Thu, 9 Aug 2012 08:04:15 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 095351B4035 for ; Thu, 9 Aug 2012 08:04:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id ECB28E5439 for ; Thu, 9 Aug 2012 08:04:12 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1344499350.34760f5fb8b9b32618b95afc5f70af6c8c501136.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 34760f5fb8b9b32618b95afc5f70af6c8c501136 X-VCS-Branch: master Date: Thu, 9 Aug 2012 08:04:12 +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: 2b802fbc-71a8-4e26-bd1b-8fb7f8e57c9c X-Archives-Hash: 9a9e6b22a8d2552e40f0c21ddae51ba0 commit: 34760f5fb8b9b32618b95afc5f70af6c8c501136 Author: Davide Pesavento gmail com> AuthorDate: Thu Aug 9 08:02:30 2012 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Thu Aug 9 08:02:30 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=34760f5f [qt5-build.eclass] Prefer linking against uninstalled (just built) libraries. --- eclass/qt5-build.eclass | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index e998926..1d921f4 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -224,8 +224,9 @@ qt5-build_src_configure() { einfo "Running qmake" ./bin/qmake -recursive \ "${S}"/${EGIT_PROJECT}.pro \ - QMAKE_LIBDIR="${QTLIBDIR}" \ CONFIG+=nostrip \ + QMAKE_LIBDIR+="${QT5_BUILD_DIR}/lib" \ + QMAKE_LIBDIR+="${QTLIBDIR}" \ || die "qmake failed" popd > /dev/null || die