Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: toolchain.eclass
Date: Sat, 03 Apr 2010 20:32:52
Message-Id: E1NyA1P-0001x6-Ey@stork.gentoo.org
1 dirtyepic 10/04/03 20:32:47
2
3 Modified: toolchain.eclass
4 Log:
5 Add -0 to xargs since input is NULL delimited. Thanks to Dror for catching.
6
7 Revision Changes Path
8 1.421 eclass/toolchain.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?rev=1.421&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?rev=1.421&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?r1=1.420&r2=1.421
13
14 Index: toolchain.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
17 retrieving revision 1.420
18 retrieving revision 1.421
19 diff -u -r1.420 -r1.421
20 --- toolchain.eclass 7 Mar 2010 04:37:01 -0000 1.420
21 +++ toolchain.eclass 3 Apr 2010 20:32:47 -0000 1.421
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2008 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.420 2010/03/07 04:37:01 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.421 2010/04/03 20:32:47 dirtyepic Exp $
27 #
28 # Maintainer: Toolchain Ninjas <toolchain@g.o>
29
30 @@ -1750,7 +1750,7 @@
31
32 cd "${WORKDIR}"/build
33 # Do allow symlinks in private gcc include dir as this can break the build
34 - find gcc/include*/ -type l -print0 | xargs rm -f
35 + find gcc/include*/ -type l -print0 | xargs -0 rm -f
36 # Remove generated headers, as they can cause things to break
37 # (ncurses, openssl, etc).
38 for x in $(find gcc/include*/ -name '*.h') ; do