From c5bcb8d17889e4bc17231314c3c7017147906d1e Mon Sep 17 00:00:00 2001 From: Andrew Gaffney Date: Mon, 4 Feb 2008 18:15:57 +0000 Subject: [PATCH] Switch to double quotes where we're interpolating variables, because I suck git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@589 67a159dc-881f-0410-a524-ba9dfbe2cb84 --- ChangeLog | 4 ++++ generic/initrd.scripts | 2 +- generic/linuxrc | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 774bdbb..cebdbbe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,10 @@ # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 04 Feb 2008; Andrew Gaffney generic/initrd.scripts, + generic/linuxrc: + Switch to double quotes where we're interpolating variables, because I suck + 03 Feb 2008; Andrew Gaffney sparc64/modules_load: Add qla2xxx to sparc64's MODULES_SCSI diff --git a/generic/initrd.scripts b/generic/initrd.scripts index 7f68a53..111bc1f 100644 --- a/generic/initrd.scripts +++ b/generic/initrd.scripts @@ -475,7 +475,7 @@ cmdline_hwopts() { load_modules() { # Load modules listed in MY_HWOPTS if /lib/modules exists for the running kernel - if [ -d '/lib/modules/${KV}' ] + if [ -d "/lib/modules/${KV}" ] then good_msg 'Loading modules' # Load appropriate kernel modules diff --git a/generic/linuxrc b/generic/linuxrc index 1fc1de0..0962df1 100644 --- a/generic/linuxrc +++ b/generic/linuxrc @@ -224,7 +224,7 @@ cmdline_hwopts setup_hotplug # Load modules listed in MY_HWOPTS if /lib/modules exists for the running kernel -if [ -d '/lib/modules/${KV}' ] +if [ -d "/lib/modules/${KV}" ] then good_msg 'Loading modules' # Load appropriate kernel modules -- 2.26.2