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 A9BA1198005 for ; Sat, 16 Mar 2013 08:32:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D4F5E0655; Sat, 16 Mar 2013 08:32:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4819AE0642 for ; Sat, 16 Mar 2013 08:32:24 +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 58EE233D7EC for ; Sat, 16 Mar 2013 08:32:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id EAB85E4079 for ; Sat, 16 Mar 2013 08:32:21 +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: <1363422613.f394aa20cf6a3a49cbd9e02417f13292fac4905c.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt4-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: f394aa20cf6a3a49cbd9e02417f13292fac4905c X-VCS-Branch: master Date: Sat, 16 Mar 2013 08:32:21 +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: 2e0436c8-737d-4ed6-b4ff-cb7474d85082 X-Archives-Hash: 3ac7ab1c2244de2248e8ab99c2445781 commit: f394aa20cf6a3a49cbd9e02417f13292fac4905c Author: Davide Pesavento gmail com> AuthorDate: Sat Mar 16 08:30:13 2013 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sat Mar 16 08:30:13 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=f394aa20 [qt4-build.eclass] Remove wrong sed'ing of QT_INSTALL_{LIBS,PLUGINS}. See bug 304971 comments 16-18. --- eclass/qt4-build.eclass | 9 --------- 1 files changed, 0 insertions(+), 9 deletions(-) diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index e14a664..af6e252 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -527,15 +527,6 @@ setqtenv() { # @DESCRIPTION: # Generates Makefiles for the given list of directories. prepare_directories() { - # avoid running over the maximum argument number, bug #299810 - { - echo "${S}"/mkspecs/common/*.conf - find "${S}" -name '*.pr[io]' - } | xargs sed -i \ - -e "s:\$\$\[QT_INSTALL_LIBS\]:${QTLIBDIR}:g" \ - -e "s:\$\$\[QT_INSTALL_PLUGINS\]:${QTPLUGINDIR}:g" \ - || die - for x in "$@"; do pushd "${S}"/${x} >/dev/null || die einfo "Running qmake in: ${x}"