* Auto dodoc doesnt work because its python and u need to use split..

* AUTHORS file added to automatic dodoc list.
This commit is contained in:
Gökmen Göksel
2008-12-23 20:24:06 +00:00
parent 8975439f47
commit ac2ae47d03
+2 -2
View File
@@ -53,10 +53,10 @@ def install(parameters = ''):
if system('python setup.py install --root=%s --no-compile -O0 %s' % (get.installDIR(), parameters)):
raise InstallError, _('Install failed.')
DDOCS = 'CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO \
DDOCS = 'CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO AUTHORS \
CONTRIBUTORS LICENSE COPYING* Change* MANIFEST* README*'
for doc in DDOCS:
for doc in DDOCS.split():
if can_access_file(doc):
dodoc(doc)