mk: quote KERNELCC to allow ccache build
authorSimon Kagstrom <simon.kagstrom@netinsight.net>
Thu, 24 Sep 2015 07:43:28 +0000 (09:43 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 25 Oct 2015 17:39:46 +0000 (18:39 +0100)
Otherwise building with KERNELCC="ccache gcc" will fail:
 ccache: invalid option -- 'p'

Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
mk/rte.module.mk

index 7bf77c1..53ed4fe 100644 (file)
@@ -78,7 +78,7 @@ build: _postbuild
 $(MODULE).ko: $(SRCS_LINKS)
        @if [ ! -f $(notdir Makefile) ]; then ln -nfs $(SRCDIR)/Makefile . ; fi
        @$(MAKE) -C $(RTE_KERNELDIR) M=$(CURDIR) O=$(RTE_KERNELDIR) \
-               CC=$(KERNELCC) CROSS_COMPILE=$(CROSS) V=$(if $V,1,0)
+               CC="$(KERNELCC)" CROSS_COMPILE=$(CROSS) V=$(if $V,1,0)
 
 # install module in $(RTE_OUTPUT)/kmod
 $(RTE_OUTPUT)/kmod/$(MODULE).ko: $(MODULE).ko