From: Andrew Gaffney Date: Tue, 19 Feb 2008 19:31:25 +0000 (+0000) Subject: Remove quotes from around ${ROOT_TREES} so that the dirs are parsed separately by... X-Git-Tag: v3.4.10.902~151 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7f20c816c3ec5807bf44bdc75b79ec7889ed24b6;p=genkernel.git Remove quotes from around ${ROOT_TREES} so that the dirs are parsed separately by bash/cp git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@601 67a159dc-881f-0410-a524-ba9dfbe2cb84 --- diff --git a/ChangeLog b/ChangeLog index 47374c4..f190241 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,10 @@ # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 19 Feb 2008; Andrew Gaffney generic/linuxrc: + Remove quotes from around ${ROOT_TREES} so that the dirs are parsed + separately by bash/cp + 14 Feb 2008; Chris Gianelloni gen_compile.sh, gen_determineargs.sh, gen_funcs.sh, gen_initramfs.sh, gen_initrd.sh, generic/initrd.defaults, generic/initrd.scripts, generic/linuxrc, diff --git a/generic/linuxrc b/generic/linuxrc index e1db31e..9bc6ec3 100644 --- a/generic/linuxrc +++ b/generic/linuxrc @@ -523,7 +523,7 @@ then good_msg "Copying read-write image contents to tmpfs" # Copy over stuff that should be writable - (cd "${NEW_ROOT}/${FS_LOCATION}"; cp -a "${ROOT_TREES}" "${NEW_ROOT}") + (cd "${NEW_ROOT}/${FS_LOCATION}"; cp -a ${ROOT_TREES} "${NEW_ROOT}") # Now we do the links. for x in ${ROOT_LINKS}