diff --git a/ChangeLog b/ChangeLog index c4ebf0e..534ebf2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 11 Mar 2008; Andrew Gaffney gen_compile.sh: + Remove the quotes when trying to expand a glob + 11 Mar 2008; Andrew Gaffney patches/busybox/1.7.4/1.7.4-mdadm.diff, patches/busybox/1.7.4/1.7.4-mdstart.diff: diff --git a/gen_compile.sh b/gen_compile.sh index d4b7c8d..a200ac4 100644 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -189,7 +189,7 @@ apply_patches() { if [ -d "${GK_SHARE}/patches/${util}/${version}" ] then print_info 1 "${util}: >> Applying patches..." - for i in "${GK_SHARE}/patches/${util}/${version}/*" + for i in ${GK_SHARE}/patches/${util}/${version}/* do patch_success=0 for j in `seq 0 5`