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
cleanup-cruft
Andrew Gaffney 17 years ago
parent 23c3235aa1
commit c5bcb8d178

@ -2,6 +2,10 @@
# Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2 # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: $ # $Header: $
04 Feb 2008; Andrew Gaffney <agaffney@gentoo.org> generic/initrd.scripts,
generic/linuxrc:
Switch to double quotes where we're interpolating variables, because I suck
03 Feb 2008; Andrew Gaffney <agaffney@gentoo.org> sparc64/modules_load: 03 Feb 2008; Andrew Gaffney <agaffney@gentoo.org> sparc64/modules_load:
Add qla2xxx to sparc64's MODULES_SCSI Add qla2xxx to sparc64's MODULES_SCSI

@ -475,7 +475,7 @@ cmdline_hwopts() {
load_modules() { load_modules() {
# Load modules listed in MY_HWOPTS if /lib/modules exists for the running kernel # 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 then
good_msg 'Loading modules' good_msg 'Loading modules'
# Load appropriate kernel modules # Load appropriate kernel modules

@ -224,7 +224,7 @@ cmdline_hwopts
setup_hotplug setup_hotplug
# Load modules listed in MY_HWOPTS if /lib/modules exists for the running kernel # 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 then
good_msg 'Loading modules' good_msg 'Loading modules'
# Load appropriate kernel modules # Load appropriate kernel modules

Loading…
Cancel
Save