diff options
author | 2016-02-28 15:18:50 +0100 | |
---|---|---|
committer | 2016-02-28 15:18:50 +0100 | |
commit | 54d04df9af1cf88cc080fb39d1a8a26cecac069d (patch) | |
tree | 3d1f8e69a09e25a911a2cf2cb28259f29420badc | |
parent | 1adc64573f595012e0b7b9a91f60a18bee23bb0d (diff) |
Fix issue on win (nw)
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |