From 7e0ec12c49e1cc8abb953cea4036c47aac75501e Mon Sep 17 00:00:00 2001 From: ccd0 Date: Mon, 18 Apr 2016 15:18:42 -0700 Subject: [PATCH] Fix Windows copy adding EOF mark. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 809159702..17d4afa2c 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ ifdef ComSpec BIN := $(subst /,\,node_modules/.bin/) RMDIR := -rmdir /s /q RM := -del - CP = copy /y $(subst /,\,$<)+ $(subst /,\,$@) - CP2 = copy /y $(subst /,\,$1)+ $(subst /,\,$2) + CP = copy /b /y $(subst /,\,$<)+ $(subst /,\,$@) + CP2 = copy /b /y $(subst /,\,$1)+ $(subst /,\,$2) MKDIR = -mkdir $(subst /,\,$@) ESC_DOLLAR = $$ else