diff options
author | David Robillard <d@drobilla.net> | 2020-09-27 13:16:00 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-09-27 13:16:00 +0200 |
commit | 3faa8cc20b2c0fd3ba414e5af2bbddc96cd30f7c (patch) | |
tree | ba0ad5d844a1b51704936baeda48f47b1f687d8d /wscript | |
parent | 50a5b1059ff1f40758cef5445b465a7de8bfb477 (diff) | |
download | sord-3faa8cc20b2c0fd3ba414e5af2bbddc96cd30f7c.tar.gz sord-3faa8cc20b2c0fd3ba414e5af2bbddc96cd30f7c.tar.bz2 sord-3faa8cc20b2c0fd3ba414e5af2bbddc96cd30f7c.zip |
Fix documentation buildingv0.16.6
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -300,8 +300,6 @@ def build(bld): bld.install_files('${MANDIR}/man1', bld.path.ant_glob('doc/*.1')) bld.add_post_fun(autowaf.run_ldconfig) - if bld.env.DOCS: - bld.add_post_fun(fix_docs) def lint(ctx): "checks code for style issues" @@ -318,10 +316,6 @@ def lint(ctx): "../src/*.c") subprocess.call(cmd, cwd='build', shell=True) -def fix_docs(ctx): - if ctx.cmd == 'build': - autowaf.make_simple_dox(APPNAME) - def upload_docs(ctx): os.system('rsync -ravz --delete -e ssh build/doc/html/ drobilla@drobilla.net:~/drobilla.net/docs/sord/') for page in glob.glob('doc/*.[1-8]'): |