blob: 91292e6605256ac25b77e3f08a082bff9fa0e0a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$NetBSD: patch-setup-py,v 1.1 2011/07/17 02:24:13 dholland Exp $
Honor PKGMANDIR. (The man pages are installed from the pkgsrc makefile.)
--- setup.py~ 2011-07-15 08:03:39.000000000 +0000
+++ setup.py
@@ -73,8 +73,8 @@ def main():
('share/roundup/cgi-bin', ['frontends/roundup.cgi']),
]
# install man pages on POSIX platforms
- if os.name == 'posix':
- data_files.append(include('share/man/man1', '*'))
+ #if os.name == 'posix':
+ # data_files.append(include('share/man/man1', '*'))
# add the templates to the data files lists
from roundup.init import listTemplates
|