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 1OHsaO-00071w-71 for garchives@archives.gentoo.org; Fri, 28 May 2010 05:58:24 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C36D7E077E; Fri, 28 May 2010 05:58:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9F220E077E for ; Fri, 28 May 2010 05:58:19 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 2DAE71B400C for ; Fri, 28 May 2010 05:58:18 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 2085) id BC0332CE3C; Fri, 28 May 2010 05:58:16 +0000 (UTC) From: "Peter Volkov (pva)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, pva@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/wvdial/files: wvdial-1.61-parallel-make.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: wvdial-1.61-parallel-make.patch X-VCS-Directories: net-dialup/wvdial/files X-VCS-Committer: pva X-VCS-Committer-Name: Peter Volkov Content-Type: text/plain; charset=utf8 Message-Id: <20100528055816.BC0332CE3C@corvid.gentoo.org> Date: Fri, 28 May 2010 05:58:16 +0000 (UTC) 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: 53b9ad1c-097c-4ff1-848d-13c68538a5b4 X-Archives-Hash: a586fc5d1b77a72d43f94884ecf83174 pva 10/05/28 05:58:16 Added: wvdial-1.61-parallel-make.patch Log: Fixed build issue, bug #321729, thank Willard Dawson for report and Sam= uli Suominen, Lars Wendler (Polynomial-C) for this fix. (Portage version: 2.1.8.3/cvs/Linux x86_64) Revision Changes Path 1.1 net-dialup/wvdial/files/wvdial-1.61-parallel-make.pa= tch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/wvdial/= files/wvdial-1.61-parallel-make.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/wvdial/= files/wvdial-1.61-parallel-make.patch?rev=3D1.1&content-type=3Dtext/plain Index: wvdial-1.61-parallel-make.patch =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 --- wvdial-1.61/wvrules-posix.mk +++ wvdial-1.61/wvrules-posix.mk @@ -85,12 +85,15 @@ $(AR) s $1 endef =20 -CC: FORCE +CC: @CC=3D"$(CC)" CFLAGS=3D"$(CFLAGS)" CPPFLAGS=3D"$(CPPFLAGS)" \ $(WVSTREAMS_SRC)/gen-cc CC c =20 -CXX: FORCE +CXX: @CC=3D"$(CXX)" CFLAGS=3D"$(CXXFLAGS)" CPPFLAGS=3D"$(CPPFLAGS)" \ $(WVSTREAMS_SRC)/gen-cc CXX cc =20 +#All files must depend on the above two rules. This is a godawful hack. +$(shell find -type f '(' -name '*.c' -o -name '*.cc' ')' ): CC CXX + wvlink=3D$(LINK_MSG)$(WVLINK_CC) $(LDFLAGS) $($1-LDFLAGS) -o $1 $(filter= %.o %.a %.so, $2) $($1-LIBS) $(XX_LIBS) $(LDLIBS) $(PRELIBS) $(LIBS)