diff options
author | David Robillard <d@drobilla.net> | 2012-04-18 05:18:23 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-18 05:18:23 +0000 |
commit | b05e48f333d27e434b82587d248824b98f47bcd5 (patch) | |
tree | 8872959725e5dfc8050fe7ccef6a6c2db01a5d8c /wscript | |
parent | 8ca845b7ddf0b28fa20ab4ed67e696f825fa60bc (diff) | |
download | serd-b05e48f333d27e434b82587d248824b98f47bcd5.tar.gz serd-b05e48f333d27e434b82587d248824b98f47bcd5.tar.bz2 serd-b05e48f333d27e434b82587d248824b98f47bcd5.zip |
Fix absolute path in documentation.
git-svn-id: http://svn.drobilla.net/serd/trunk@348 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -264,9 +264,9 @@ def fix_docs(ctx): os.chdir(build_dir(ctx, 'doc/html')) os.system("sed -i 's/SERD_API //' group__serd.html") os.system("sed -i 's/SERD_DEPRECATED //' group__serd.html") + os.system("sed -i 's/href=\"doc\/style.css\"/href=\"style.css\"/' group__serd.html") os.remove('index.html') - os.symlink('group__serd.html', - 'index.html') + os.symlink('group__serd.html', 'index.html') os.chdir(top) os.chdir(build_dir(ctx, 'doc/man/man3')) os.system("sed -i 's/SERD_API //' serd.3") |