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 1M8qvk-00072n-3d for garchives@archives.gentoo.org; Tue, 26 May 2009 07:18:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24902E046E; Tue, 26 May 2009 07:18:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 074A9E046E for ; Tue, 26 May 2009 07:18:35 +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 9FD4764262 for ; Tue, 26 May 2009 07:18:34 +0000 (UTC) Received: from vapier by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1M8qvh-0001Uc-DY for gentoo-commits@lists.gentoo.org; Tue, 26 May 2009 07:18:33 +0000 From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: flag-o-matic.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: flag-o-matic.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: Sender: Mike Frysinger Date: Tue, 26 May 2009 07:18:33 +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: 1f53f8dd-e94f-4c22-b85b-c320b5e214dd X-Archives-Hash: fc3bd114cbf9eb94848a0b962404488c vapier 09/05/26 07:18:33 Modified: flag-o-matic.eclass Log: fix another think-o in append-flags unification #271141 by Sebastian Le= chte Revision Changes Path 1.138 eclass/flag-o-matic.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/flag-o-mati= c.eclass?rev=3D1.138&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/flag-o-mati= c.eclass?rev=3D1.138&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/flag-o-mati= c.eclass?r1=3D1.137&r2=3D1.138 Index: flag-o-matic.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/flag-o-matic.eclass,v retrieving revision 1.137 retrieving revision 1.138 diff -u -r1.137 -r1.138 --- flag-o-matic.eclass 24 May 2009 00:33:33 -0000 1.137 +++ flag-o-matic.eclass 26 May 2009 07:18:33 -0000 1.138 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.137 20= 09/05/24 00:33:33 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.138 20= 09/05/26 07:18:33 vapier Exp $ =20 # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -182,7 +182,7 @@ append-flags() { [[ -z $* ]] && return 0 append-cflags "$@" - append-cppflags "$@" + append-cxxflags "$@" append-fflags "$@" return 0 }