From 1491f6d8e02ba636fa1e170326028167e531740e Mon Sep 17 00:00:00 2001 From: Oliver Hahm Date: Wed, 17 Apr 2013 12:09:08 +0200 Subject: [PATCH] * added quotes to main Makefile to deal with spaces in PATH --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5e4bbb4090..1100e9a6ae 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,10 @@ DIRS = $(RIOTCPU) core drivers sys all: mkdir -p $(BINDIR) - @for i in $(DIRS) ; do $(MAKE) -C $$i ; done ; + @for i in $(DIRS) ; do "$(MAKE)" -C $$i ; done ; clean: - @for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ; + @for i in $(DIRS) ; do "$(MAKE)" -C $$i clean ; done ; -@if [ -d $(BINDIR) ] ; \ then rmdir $(BINDIR) ; \ fi