Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9593 - main/branches/2.1.2/bin
Date: Sat, 29 Mar 2008 05:52:38
Message-Id: E1JfTzX-0000XP-KL@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-03-29 05:52:34 +0000 (Sat, 29 Mar 2008)
3 New Revision: 9593
4
5 Modified:
6 main/branches/2.1.2/bin/misc-functions.sh
7 Log:
8 Fix quoting for ${root} in install_mask(). (trunk r9590)
9
10
11 Modified: main/branches/2.1.2/bin/misc-functions.sh
12 ===================================================================
13 --- main/branches/2.1.2/bin/misc-functions.sh 2008-03-29 05:30:41 UTC (rev 9592)
14 +++ main/branches/2.1.2/bin/misc-functions.sh 2008-03-29 05:52:34 UTC (rev 9593)
15 @@ -374,7 +374,7 @@
16 set +o noglob
17 quiet_mode || einfo "Removing ${no_inst}"
18 # normal stuff
19 - rm -Rf ${root}/${no_inst} >&/dev/null
20 + rm -Rf "${root}"/${no_inst} >&/dev/null
21
22 # we also need to handle globs (*.a, *.h, etc)
23 find "${root}" -path "${no_inst}" -exec rm -fR {} \; >/dev/null
24
25 --
26 gentoo-commits@l.g.o mailing list