From fa915324b4839d58bc055d35e9c9435c3a17c39d Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Sun, 10 Jul 2016 16:18:26 +0200 Subject: [PATCH] Bugfix in Makefile for paths with spaces. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4a708d2..927d80d 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ all: coffee coffee: $(JS_FILES) $(SCRIPT_DIR)/%.js: $(SCRIPT_DIR)/%.coffee - $(CC) -c $< + "$(CC)" -c $<