Fix the docs installation dir.

This commit is contained in:
Gustavo Carneiro 2007-11-11 11:39:57 +00:00
parent bc7703666d
commit 167e832d9b

View File

@ -11,7 +11,12 @@
# TODO: we want to build this using xmlto, i.e. doxmlto html-nochunks -m config.xsl pk-reference.xml
install_files('DATADIR', 'APPNAME/docs', 'pk-reference.html')
install_files('DATADIR', 'APPNAME/docs', 'pk-structure.png')
install_files('DATADIR', 'APPNAME/docs', 'docbook.css')
import Utils
## FIXME: shouldn't it be: doc_subdir = os.path.join('doc', Utils.g_module.APPNAME) ?
doc_subdir = os.path.join(Utils.g_module.APPNAME, 'docs')
install_files('DATADIR', doc_subdir, 'pk-reference.html')
install_files('DATADIR', doc_subdir, 'pk-structure.png')
install_files('DATADIR', doc_subdir, 'docbook.css')