Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10220 - main/trunk/bin
Date: Tue, 06 May 2008 20:26:09
Message-Id: E1JtTji-0007bi-Bs@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-05-06 20:26:05 +0000 (Tue, 06 May 2008)
3 New Revision: 10220
4
5 Modified:
6 main/trunk/bin/misc-functions.sh
7 Log:
8 In install_mask(), discard stderr messages from the 'find' command
9 since some tokens from INSTALL_MASK can trigger lots of warnings
10 and errors that are irrelevant for our purposes.
11
12
13 Modified: main/trunk/bin/misc-functions.sh
14 ===================================================================
15 --- main/trunk/bin/misc-functions.sh 2008-05-06 01:42:09 UTC (rev 10219)
16 +++ main/trunk/bin/misc-functions.sh 2008-05-06 20:26:05 UTC (rev 10220)
17 @@ -414,7 +414,7 @@
18
19 # we also need to handle globs (*.a, *.h, etc)
20 find "${root}" \( -path "${no_inst}" -or -name "${no_inst}" \) \
21 - -exec rm -fR {} \; >/dev/null
22 + -exec rm -fR {} \; >/dev/null 2>&1
23 done
24 # set everything back the way we found it
25 set +o noglob
26
27 --
28 gentoo-commits@l.g.o mailing list