Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10221 - main/branches/2.1.2/bin
Date: Tue, 06 May 2008 20:26:51
Message-Id: E1JtTkO-0007cZ-ID@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-05-06 20:26:47 +0000 (Tue, 06 May 2008)
3 New Revision: 10221
4
5 Modified:
6 main/branches/2.1.2/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. (trunk r10220)
11
12
13 Modified: main/branches/2.1.2/bin/misc-functions.sh
14 ===================================================================
15 --- main/branches/2.1.2/bin/misc-functions.sh 2008-05-06 20:26:05 UTC (rev 10220)
16 +++ main/branches/2.1.2/bin/misc-functions.sh 2008-05-06 20:26:47 UTC (rev 10221)
17 @@ -378,7 +378,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