mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
14 lines
486 B
Python
14 lines
486 B
Python
$NetBSD: patch-setupbase.py,v 1.1 2014/01/22 10:58:37 drochner Exp $
|
|
|
|
--- setupbase.py.orig 2012-10-21 00:30:54.000000000 +0000
|
|
+++ setupbase.py
|
|
@@ -201,7 +201,7 @@ def find_data_files():
|
|
"""
|
|
|
|
docdirbase = pjoin('share', 'doc', 'ipython')
|
|
- manpagebase = pjoin('share', 'man', 'man1')
|
|
+ manpagebase = pjoin(os.environ.get('PKGMANDIR'), 'man1')
|
|
|
|
# Simple file lists can be made by hand
|
|
manpages = [f for f in glob(pjoin('docs','man','*.1.gz')) if isfile(f)]
|