diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-30 00:02:23 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-30 00:02:23 +0000 |
commit | 5697b5fb78738518764106b52366235fe7a3201e (patch) | |
tree | 944edb37be6f7a8dc925999f9f82525d8ccb45aa | |
parent | ca3501c09229b36a1974e99e17f4ef76502c5c46 (diff) |
merge in build fixes from 0.43
svn path=/trunk/; revision=17002
-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 |