[POWERPC] Fix boot wrapper invocation if CROSS_COMPILE contains spaces
authorMichael Ellerman <michael@ellerman.id.au>
Sat, 30 Sep 2006 01:54:09 +0000 (11:54 +1000)
committerPaul Mackerras <paulus@samba.org>
Tue, 10 Oct 2006 01:54:26 +0000 (11:54 +1000)
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 <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/boot/Makefile

index 003520b56303e2f4e275d436827a6a6152c8f3a4..bfd17b145803950e4eaac1840aba4bc3771a5e7a 100644 (file)
@@ -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