From: Michael Ellerman Date: Sat, 30 Sep 2006 01:54:09 +0000 (+1000) Subject: [POWERPC] Fix boot wrapper invocation if CROSS_COMPILE contains spaces X-Git-Tag: v2.6.19-rc2~144^2~8 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=dcf9065122660f4e3df02a47a75dc702d5531244;p=linux-2.6-omap-h63xx.git [POWERPC] Fix boot wrapper invocation if CROSS_COMPILE contains spaces My CROSS_COMPILE is "ccache /opt/compilers/blah", which confuses the boot wrapper script. Quote CROSS_COMPILE and CROSS32_COMPILE so they can safely contain spaces. Signed-off-by: Michael Ellerman Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 003520b5630..bfd17b14580 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -105,10 +105,10 @@ wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff) # Bits for building various flavours of zImage ifneq ($(CROSS32_COMPILE),) -CROSSWRAP := -C $(CROSS32_COMPILE) +CROSSWRAP := -C "$(CROSS32_COMPILE)" else ifneq ($(CROSS_COMPILE),) -CROSSWRAP := -C $(CROSS_COMPILE) +CROSSWRAP := -C "$(CROSS_COMPILE)" endif endif