From 08bca9e8e694c2c49d64046d779ef3ba61b93806 Mon Sep 17 00:00:00 2001 From: Lionel Orry Date: Thu, 17 Apr 2014 17:05:28 +0200 Subject: [PATCH] quote parameters sent to sub-make call Sometimes, one or several of these variables are made of several words so we need to enclose them in quotes so that they are correctly passed to make. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 016dd3c..f4d202f 100644 --- a/Makefile +++ b/Makefile @@ -143,7 +143,7 @@ export CONFIG_RTL8188EU = m all: modules modules: - $(MAKE) ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C $(KSRC) M=$(shell pwd) modules + $(MAKE) ARCH="$(ARCH)" CROSS_COMPILE="$(CROSS_COMPILE)" -C "$(KSRC)" M="$(shell pwd)" modules strip: $(CROSS_COMPILE)strip 8188eu.ko --strip-unneeded