Added a small patch from John R. Graham <john_r_graham@mindspring.com> to fix argumen...
authorChris Gianelloni <wolf31o2@gentoo.org>
Sat, 24 Nov 2007 21:48:35 +0000 (21:48 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Sat, 24 Nov 2007 21:48:35 +0000 (21:48 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@565 67a159dc-881f-0410-a524-ba9dfbe2cb84

ChangeLog
gen_funcs.sh

index 7fecdaf9835168eed6c1839c2cfce2ee7e642f8d..c60e6aa23a72fbf4fedb7a81bff89e51359fee7a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,16 +2,20 @@
 # Copyright 2006-2007 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  24 Nov 2007; Chris Gianelloni <wolf31o2@gentoo.org> gen_funcs.sh:
+  Added a small patch from John R. Graham <john_r_graham@mindspring.com> to
+  fix arguments with spaces for bug #200161.
+
   24 Nov 2007; Andrew Gaffney <agaffney@gentoo.org> generic/linuxrc:
-  use 'read' to get a line at a time to account for directories with spaces in
-  the name. this fixes bug 199701
+  Use 'read' to get a line at a time to account for directories with spaces in
+  the name. This fixes bug 199701.
 
   23 Nov 2007; Andrew Gaffney <agaffney@gentoo.org> gen_initramfs.sh,
   gen_initrd.sh:
-  look for cryptsetup in /bin and /sbin
+  Look for cryptsetup in /bin and /sbin.
 
   17 Nov 2007; Andrew Gaffney <agaffney@gentoo.org> gen_compile.sh:
-  Force dmraid to be built with -j1 for bug #188273
+  Force dmraid to be built with -j1 for bug #188273.
 
   16 Nov 2007; Chris Gianelloni <wolf31o2@gentoo.org> genkernel.conf:
   My original sed of LVM2->LVM caught a few too many things. Thanks to Robin
index 4ebf57bbe5d98375d7c02640f7408b4472203946..9d726decda75aebcf5967df98b285557c8f87450 100755 (executable)
@@ -508,6 +508,6 @@ set_config_with_override() {
                fi
        fi
 
-       eval ${CfgVar}=${Result}
+       eval ${CfgVar}=\"${Result}\"
 }