From 9980cfc5396d281a58b2feb203cc35ad5f633165 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Sat, 24 Nov 2007 21:48:35 +0000 Subject: [PATCH] Added a small patch from John R. Graham to fix arguments with spaces for bug #200161. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@565 67a159dc-881f-0410-a524-ba9dfbe2cb84 --- ChangeLog | 12 ++++++++---- gen_funcs.sh | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7fecdaf..c60e6aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,16 +2,20 @@ # Copyright 2006-2007 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 24 Nov 2007; Chris Gianelloni gen_funcs.sh: + Added a small patch from John R. Graham to + fix arguments with spaces for bug #200161. + 24 Nov 2007; Andrew Gaffney 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 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 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 genkernel.conf: My original sed of LVM2->LVM caught a few too many things. Thanks to Robin diff --git a/gen_funcs.sh b/gen_funcs.sh index 4ebf57b..9d726de 100755 --- a/gen_funcs.sh +++ b/gen_funcs.sh @@ -508,6 +508,6 @@ set_config_with_override() { fi fi - eval ${CfgVar}=${Result} + eval ${CfgVar}=\"${Result}\" } -- 2.26.2