blob: aa5f88a1e7566c64911e20e16e8d73c8277c8d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- Python/configure.py.orig 2009-05-13 23:54:57.000000000 +0200
+++ Python/configure.py 2009-05-13 23:56:26.000000000 +0200
@@ -276,7 +276,8 @@
installs=installs,
static=opts.static,
debug=opts.debug,
- universal=pyqt.universal
+ universal=pyqt.universal,
+ strip=0
)
else:
makefile = Makefile(
@@ -285,7 +286,8 @@
install_dir=opts.qscimoddir,
installs=installs,
static=opts.static,
- debug=opts.debug
+ debug=opts.debug,
+ strip=0
)
if qsci_define:
|