diff options
-rw-r--r-- | doc/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile index 149f24f6..f57fd700 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -201,7 +201,12 @@ pddp_clean: tutorials_install: $(manualsdir) # start-here install -d "$(DESTDIR)$(manualsdir)/+ Start Here" +ifeq ($(OS_NAME),windows) +# msys can't handle unicode well, so it dies on the japanese filename, xcopy works tho + cd $(doc_src)/tutorials/ && xcopy //y start-here "$(DESTDIR)$(manualsdir)/+ Start Here" +else install -p $(doc_src)/tutorials/start-here/*.* "$(DESTDIR)$(manualsdir)/+ Start Here" +endif # pddrums install -d $(DESTDIR)$(manualsdir)/PdDrums install -p $(doc_src)/tutorials/footils/pddrums/*.* $(DESTDIR)$(manualsdir)/PdDrums |