summaryrefslogtreecommitdiff
path: root/devel/ipython/files/patch-setupbase.py
blob: c3446a790af2164bdf9620602a5e2169719379a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$FreeBSD$

--- setupbase.py.orig
+++ setupbase.py
@@ -208,7 +208,7 @@
     """
 
     docdirbase  = pjoin('share', 'doc', 'ipython')
-    manpagebase = pjoin('share', 'man', 'man1')
+    manpagebase = pjoin('man', 'man1')
 
     # Simple file lists can be made by hand
     manpages = [f for f in glob(pjoin('docs','man','*.1.gz')) if isfile(f)]
@@ -232,7 +232,6 @@
 
     # And assemble the entire output list
     data_files = [ (manpagebase, manpages),
-                   (pjoin(docdirbase, 'extensions'), igridhelpfiles),
                    ] + manual_files + example_files
 
     return data_files