Description: Fix source folder name in Makefile
 The sphinx-apidoc call targets a nonexistent src/ folder
Author: Afif Elghraoui <afif@ghraoui.name>
Forwarded: https://github.com/PacificBiosciences/pbalign/pull/12
Last-Update: 2015-09-05
--- python-pbalign.orig/Makefile
+++ python-pbalign/Makefile
@@ -23,7 +23,7 @@
 	find tests/cram -name "*.t" | xargs cram 
 
 doc:
-	sphinx-apidoc -T -f -o doc src/ && cd doc && make html
+	sphinx-apidoc -T -f -o doc pbalign/ && cd doc && make html
 
 docs: doc
 
