From 54d04df9af1cf88cc080fb39d1a8a26cecac069d Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 28 Feb 2016 15:18:50 +0100 Subject: [PATCH] Fix issue on win (nw) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 51fdb6c3c88..997d3b3bf8c 100644 --- a/makefile +++ b/makefile @@ -754,7 +754,7 @@ ifeq (posix,$(SHELLTYPE)) COPY = $(SILENT) cp -fR "$(1)" "$(2)" else MKDIR = $(SILENT) mkdir "$(subst /,\\,$(1))" 2> nul || exit 0 - COPY = $(SILENT) copy /Y "$(subst /,\\,$(1))" "$(subst /,\\,$(2))" > 2> nul || exit 0 + COPY = $(SILENT) copy /Y "$(subst /,\\,$(1))" "$(subst /,\\,$(2))" > nul || exit 0 endif GENDIR = $(BUILDDIR)/generated