diff options
author | David Robillard <d@drobilla.net> | 2008-10-19 20:50:55 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-19 20:50:55 +0000 |
commit | a09cd232854bf608269fbe06814f32d788fb159d (patch) | |
tree | f3aab57dc5b10d17f2855369dce7d281cbcc2e42 /wscript | |
parent | 2fadbb9b216218623be702da309782a2a22f1af2 (diff) | |
download | lilv-a09cd232854bf608269fbe06814f32d788fb159d.tar.gz lilv-a09cd232854bf608269fbe06814f32d788fb159d.tar.bz2 lilv-a09cd232854bf608269fbe06814f32d788fb159d.zip |
Install HTML and man page documentation according to configuration options.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1686 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -114,7 +114,8 @@ def build(bld): # Documentation autowaf.build_dox(bld, 'SLV2', SLV2_VERSION, srcdir, blddir) - install_files('PREFIX', 'share/doc/slv2', blddir + '/default/doc/html/*') + install_files('HTMLDIR', '', blddir + '/default/doc/html/*') + install_files('MANDIR', 'man3', blddir + '/default/doc/man/man3/*') def shutdown(): autowaf.shutdown() |