Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: flag-o-matic.eclass
Date: Thu, 29 Nov 2012 23:27:43
Message-Id: 20121129232733.2370220C65@flycatcher.gentoo.org
1 vapier 12/11/29 23:27:33
2
3 Modified: flag-o-matic.eclass
4 Log:
5 test-flag-PROG: read from stdin rather than directly from /dev/null as some compiler driver versions cannot handle that #443778
6
7 Revision Changes Path
8 1.184 eclass/flag-o-matic.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-matic.eclass?rev=1.184&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-matic.eclass?rev=1.184&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-matic.eclass?r1=1.183&r2=1.184
13
14 Index: flag-o-matic.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v
17 retrieving revision 1.183
18 retrieving revision 1.184
19 diff -u -r1.183 -r1.184
20 --- flag-o-matic.eclass 18 Nov 2012 08:29:17 -0000 1.183
21 +++ flag-o-matic.eclass 29 Nov 2012 23:27:32 -0000 1.184
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2012 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.183 2012/11/18 08:29:17 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.184 2012/11/29 23:27:32 vapier Exp $
27
28 # @ECLASS: flag-o-matic.eclass
29 # @MAINTAINER:
30 @@ -392,7 +392,7 @@
31
32 # use -c so we can test the assembler as well
33 local PROG=$(tc-get${comp})
34 - ${PROG} "${flag}" -c -o /dev/null -x${lang} /dev/null \
35 + ${PROG} "${flag}" -c -o /dev/null -x${lang} - < /dev/null \
36 > /dev/null 2>&1
37 }