summarylogtreecommitdiffstats
path: root/fix-setup.py.patch
blob: 137f7d53d17e1918a49482c2c3a9f168f90480c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ for line in f:


 name = "pysvn"
-_pysvn_soname = '_pysvn_%d_%d' % sys.version_info[:2]
+_pysvn_soname = '_pysvn'


 class BuildExtensions(build_ext):
@@ -91,7 +91,7 @@ class BuildExtensions(build_ext):
         # Invoke the build system. This will generate the __init__.py and
         # .so that we'll package.
         os.chdir( 'Source' )
-        os.system( sys.executable + ' setup.py configure' )
+        os.system( sys.executable + ' setup.py configure --verbose --fixed-module-name --norpath' )
         os.system( 'make clean' )
         os.system( 'make' )