[svn r38700] Fixed paths, docs are now no longer placed in a sub dir.
--HG-- branch : trunk
This commit is contained in:
parent
b9965f8134
commit
f5f46c9f3e
|
@ -21,16 +21,15 @@ def run_tests(path, envvars='', args=''):
|
|||
|
||||
def build_apigen_docs(targetpath, testargs=''):
|
||||
run_tests(pypath,
|
||||
'APIGEN_TARGET="%s/apigen" APIGEN_DOCRELPATH="../doc/"' % (
|
||||
'APIGEN_TARGET="%s/apigen" APIGEN_DOCRELPATH="../"' % (
|
||||
targetpath,),
|
||||
testargs + ' --apigen="%s/apigen/apigen.py"' % (pypath,))
|
||||
|
||||
def build_docs(targetpath, testargs):
|
||||
docpath = pypath.join('doc')
|
||||
run_tests(docpath, '',
|
||||
testargs + ' --forcegen --apigenrelpath="../apigen/"')
|
||||
topath = targetpath.ensure('doc', dir=True)
|
||||
docpath.copy(topath)
|
||||
testargs + ' --forcegen --apigenrelpath="apigen/"')
|
||||
docpath.copy(targetpath)
|
||||
|
||||
def build_nav(targetpath, docs=True, api=True):
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue