Skip to content
Snippets Groups Projects
Commit 1491f6d8 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

* added quotes to main Makefile to deal with spaces in PATH

parent e69da952
No related branches found
No related tags found
No related merge requests found
...@@ -2,10 +2,10 @@ DIRS = $(RIOTCPU) core drivers sys ...@@ -2,10 +2,10 @@ DIRS = $(RIOTCPU) core drivers sys
all: all:
mkdir -p $(BINDIR) mkdir -p $(BINDIR)
@for i in $(DIRS) ; do $(MAKE) -C $$i ; done ; @for i in $(DIRS) ; do "$(MAKE)" -C $$i ; done ;
clean: clean:
@for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ; @for i in $(DIRS) ; do "$(MAKE)" -C $$i clean ; done ;
-@if [ -d $(BINDIR) ] ; \ -@if [ -d $(BINDIR) ] ; \
then rmdir $(BINDIR) ; \ then rmdir $(BINDIR) ; \
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment