aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b95ea76..96f2362 100755
--- a/setup.py
+++ b/setup.py
@@ -638,7 +638,8 @@ class Setup():
for man in manpages:
if man is manpages[0]: man = ''
else: man = '.' + man[0]
- files.append('manuals/manpage' + man + '.0.' + comp)
+ for sec in range(0, 9):
+ files.append('manuals/manpage%s.%s.%s' % (man, str(sec), comp))
for shell in [item[0] for item in shells]:
for command in commands:
files.append('completion/%s-completion.%s.%s' % (shell, 'sh' if shell == 'bash' else shell, command))