Signed-off-by: Sunil Beta <betasam@xxxxxxxxx> --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 07bc925..c2ae267 100644 --- a/Makefile +++ b/Makefile @@ -149,8 +149,13 @@ else _all: modules endif -srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR)) +srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR)) objtree := $(CURDIR) + +# FIX! spaces in path can break build +srctree := $(shell echo $(srctree) | sed "s/ /\\\ /g" ) +objtree := $(shell echo $(objtree) | sed "s/ /\\\ /g" ) + src := $(srctree) obj := $(objtree) -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html