Remove the quotes when trying to expand a glob
authorAndrew Gaffney <agaffney@gentoo.org>
Tue, 11 Mar 2008 23:18:42 +0000 (23:18 +0000)
committerAndrew Gaffney <agaffney@gentoo.org>
Tue, 11 Mar 2008 23:18:42 +0000 (23:18 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@621 67a159dc-881f-0410-a524-ba9dfbe2cb84

ChangeLog
gen_compile.sh

index c4ebf0ef8f6f4dd375e34dd2a7c0aabd4415d871..534ebf21e01d1e6a54b92713284f60348619b190 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  11 Mar 2008; Andrew Gaffney <agaffney@gentoo.org> gen_compile.sh:
+  Remove the quotes when trying to expand a glob
+
   11 Mar 2008; Andrew Gaffney <agaffney@gentoo.org>
   patches/busybox/1.7.4/1.7.4-mdadm.diff,
   patches/busybox/1.7.4/1.7.4-mdstart.diff:
index d4b7c8ded2c21c61d8e5a8b3ca93e6c485c8366c..a200ac4b6f46fcccae0b7a1053b44f9c7a49bdd3 100644 (file)
@@ -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`