blob: 50e1f91985a5eaf816de05e112f121d5428d8a1f (
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
+++ Python/configure.py
@@ -312,7 +312,8 @@
universal=pyqt.universal,
arch=pyqt.arch,
prot_is_public=opts.prot_is_public,
- deployment_target=pyqt.deployment_target
+ deployment_target=pyqt.deployment_target,
+ strip=0
)
else:
makefile = Makefile(
@@ -321,7 +322,8 @@
install_dir=opts.qscimoddir,
installs=installs,
static=opts.static,
- debug=opts.debug
+ debug=opts.debug,
+ strip=0
)
if qsci_define:
|