On Sun, 02 Sep 2012 20:44:01 +0900 (JST) FUJITA Tomonori <[email protected]> wrote:
> Oops, I guess that you need to set the ryu directory to PYTHONPATH. > > fujita-mac:doc fujita$ pwd > /Users/fujita/git/ryu/doc > fujita-mac:doc fujita$ PYTHONPATH=.. make html With the following patch, you don't need to set $PYTHONPATH by hand, I think. diff --git a/doc/Makefile b/doc/Makefile index 2fe1f88..d7ba2aa 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,6 +1,8 @@ # Makefile for Sphinx documentation # +export PYTHONPATH = $PYTHONPATH:.. + # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
