Gentoo Archives: gentoo-commits

From: "Andrew Gaffney (agaffney)" <agaffney@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] genkernel r621 - trunk
Date: Tue, 11 Mar 2008 23:18:46
Message-Id: E1JZDk3-00087m-85@stork.gentoo.org
1 Author: agaffney
2 Date: 2008-03-11 23:18:42 +0000 (Tue, 11 Mar 2008)
3 New Revision: 621
4
5 Modified:
6 trunk/ChangeLog
7 trunk/gen_compile.sh
8 Log:
9 Remove the quotes when trying to expand a glob
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2008-03-11 19:35:23 UTC (rev 620)
14 +++ trunk/ChangeLog 2008-03-11 23:18:42 UTC (rev 621)
15 @@ -2,6 +2,9 @@
16 # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2
17 # $Header: $
18
19 + 11 Mar 2008; Andrew Gaffney <agaffney@g.o> gen_compile.sh:
20 + Remove the quotes when trying to expand a glob
21 +
22 11 Mar 2008; Andrew Gaffney <agaffney@g.o>
23 patches/busybox/1.7.4/1.7.4-mdadm.diff,
24 patches/busybox/1.7.4/1.7.4-mdstart.diff:
25
26 Modified: trunk/gen_compile.sh
27 ===================================================================
28 --- trunk/gen_compile.sh 2008-03-11 19:35:23 UTC (rev 620)
29 +++ trunk/gen_compile.sh 2008-03-11 23:18:42 UTC (rev 621)
30 @@ -189,7 +189,7 @@
31 if [ -d "${GK_SHARE}/patches/${util}/${version}" ]
32 then
33 print_info 1 "${util}: >> Applying patches..."
34 - for i in "${GK_SHARE}/patches/${util}/${version}/*"
35 + for i in ${GK_SHARE}/patches/${util}/${version}/*
36 do
37 patch_success=0
38 for j in `seq 0 5`
39
40 --
41 gentoo-commits@l.g.o mailing list