Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9422 - main/branches/2.1.2/bin
Date: Mon, 03 Mar 2008 10:25:47
Message-Id: E1JW7rZ-0003Q7-7n@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-03-03 10:25:40 +0000 (Mon, 03 Mar 2008)
3 New Revision: 9422
4
5 Modified:
6 main/branches/2.1.2/bin/ebuild.sh
7 Log:
8 Bug #211949 - Tweak the regex so that a leading whitespace character
9 cannot match the required non-alphanumeric group. (trunk r9421)
10
11
12 Modified: main/branches/2.1.2/bin/ebuild.sh
13 ===================================================================
14 --- main/branches/2.1.2/bin/ebuild.sh 2008-03-03 10:24:46 UTC (rev 9421)
15 +++ main/branches/2.1.2/bin/ebuild.sh 2008-03-03 10:25:40 UTC (rev 9422)
16 @@ -1420,7 +1420,8 @@
17 SANDBOX_LOG SANDBOX_ON"
18 filtered_vars="${readonly_bash_vars} ${READONLY_PORTAGE_VARS}
19 BASH_[_[:alnum:]]* PATH
20 - [[:digit:]][_[:alnum:]]* [^[:space:]]*[^_[:alnum:]][^[:space:]]*"
21 + [[:digit:]][_[:alnum:]]*
22 + [^[:space:]]*[^_[:alnum:][:space:]][^[:space:]]*"
23 if hasq --filter-sandbox $* ; then
24 filtered_vars="${filtered_vars} SANDBOX_[_[:alnum:]]*"
25 else
26
27 --
28 gentoo-commits@l.g.o mailing list