From 01e966e11a8448eaa0c61395e3a1f6b9e2ac3e8a Mon Sep 17 00:00:00 2001 From: ccd0 Date: Tue, 19 Apr 2016 23:39:22 -0700 Subject: [PATCH] Fix Makefile bug breaking build on Windows. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f03e545cb..9174b6c3e 100644 --- a/Makefile +++ b/Makefile @@ -162,7 +162,7 @@ testbuilds/crx$1 : $$(MKDIR) testbuilds/crx$1/script.js : $$(call pieces,crx) | testbuilds/crx$1 .events/compile - $(call CAT,$$(call QUOTE,$$(call pieces,crx)),$$@) + $$(call CAT,$$(call QUOTE,$$(call pieces,crx)),$$@) testbuilds/crx$1/eventPage.js : tmp/eventPage.js | testbuilds/crx$1 $$(CP) @@ -188,7 +188,7 @@ testbuilds/$(name)$1.meta.js : src/meta/metadata.js src/meta/icon48.png version. $(template) $$< $$@ type=userscript channel=$1 testbuilds/$(name)$1.user.js : testbuilds/$(name)$1.meta.js tmp/meta-newline.js $$(call pieces,userscript) | .events/compile - $(call CAT,testbuilds/$(name)$1.meta.js tmp/meta-newline.js $$(call QUOTE,$$(call pieces,userscript)),$$@) + $$(call CAT,testbuilds/$(name)$1.meta.js tmp/meta-newline.js $$(call QUOTE,$$(call pieces,userscript)),$$@) endef