From: Eric Edgar Date: Fri, 9 Dec 2005 17:15:05 +0000 (+0000) Subject: add quotes to the ARCH= stuff for the kernel X-Git-Tag: v3.4.10.902~415 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1ad410b8f54c0b4d9774031ca00f33aa6cf98866;p=genkernel.git add quotes to the ARCH= stuff for the kernel git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@337 67a159dc-881f-0410-a524-ba9dfbe2cb84 --- diff --git a/gen_compile.sh b/gen_compile.sh index 1ba8799..4e27b77 100644 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -23,7 +23,7 @@ compile_kernel_args() ARGS="${ARGS} CROSS_COMPILE=\"${KERNEL_CROSS_COMPILE}\"" fi - ARGS="${ARGS} ARCH=${ARCH}" + ARGS="${ARGS} ARCH=\"${ARCH}\"" echo -n "${ARGS}" }