From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1MuAHx-0005Ml-Oa for garchives@archives.gentoo.org; Sat, 03 Oct 2009 19:29:05 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E11AE0A8E; Sat, 3 Oct 2009 19:29:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2D2C9E0A8E for ; Sat, 3 Oct 2009 19:29:05 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id C1C436741A for ; Sat, 3 Oct 2009 19:29:04 +0000 (UTC) Received: from ayoy by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1MuAHw-0002i5-Dj for gentoo-commits@lists.gentoo.org; Sat, 03 Oct 2009 19:29:04 +0000 From: "Dominik Kapusta (ayoy)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ayoy@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: qt4-build.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: qt4-build.eclass X-VCS-Directories: eclass X-VCS-Committer: ayoy X-VCS-Committer-Name: Dominik Kapusta Content-Type: text/plain; charset=utf8 Message-Id: Sender: Dominik Kapusta Date: Sat, 03 Oct 2009 19:29:04 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 29d89081-df58-4a0e-9968-bb5d667092e0 X-Archives-Hash: 64b339e8157bd3497839ee488190fd4f ayoy 09/10/03 19:29:04 Modified: qt4-build.eclass Log: Trying to fix bug #282984 in a clean way. Passing system compilers to e= make in build_directories() Revision Changes Path 1.47 eclass/qt4-build.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.e= class?rev=3D1.47&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.e= class?rev=3D1.47&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.e= class?r1=3D1.46&r2=3D1.47 Index: qt4-build.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- qt4-build.eclass 2 Oct 2009 16:39:41 -0000 1.46 +++ qt4-build.eclass 3 Oct 2009 19:29:04 -0000 1.47 @@ -1,6 +1,6 @@ # Copyright 2007-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.46 2009/1= 0/02 16:39:41 wired Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.47 2009/1= 0/03 19:29:04 ayoy Exp $ =20 # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -326,7 +326,9 @@ cd "${S}"/${x} sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:/usr/$(get_libdir)/qt4:g" $(find = "${S}" -name '*.pr[io]') "${S}"/mkspecs/common/linux.conf || die "${S}"/bin/qmake "LIBS+=3D-L${QTLIBDIR}" "CONFIG+=3Dnostrip" || die "q= make failed" - emake || die "emake failed" + emake CC=3D"@echo compiling \$< && $(tc-getCC)" \ + CXX=3D"@echo compiling \$< && $(tc-getCXX)" \ + LINK=3D"@echo linking \$@ && $(tc-getCXX)" || die "emake failed" done } =20