On Tue, May 12, 2009 at 10:03 AM, Alan Bromborsky <abro...@verizon.net> wrote:
>
> I am running XP in virtual box on Ubuntu.  I need to be able to tell
> someone running window how to compile the documentation in the git
> repository so I am trying to do it myself first (Obviously on Linux
> there is no problem).  I have installed python-sphinx, make, and
> python-docutils for windows.  When I run "make html" I get the message
> "C:/Program Files/Git/bin/sh.exe": rst2html: command not found.  Any
> suggestions.  Note that rst2html.py is in my python site-packages.

Seems like you need to apply the following patch:

$ git diff
diff --git a/doc/Makefile b/doc/Makefile
index b7a1f41..5101415 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,7 +1,7 @@
 # Makefile for Sphinx documentation
 #
 PYTHON       = python
-RST2HTML     = rst2html
+RST2HTML     = rst2html.py

 # You can set these variables from the command line.
 SPHINXOPTS   =


Ondrej

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To post to this group, send email to sympy@googlegroups.com
To unsubscribe from this group, send email to sympy+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sympy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to