Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/PyQt4/files: configure.py.patch
Date: Tue, 07 Apr 2009 18:31:01
Message-Id: E1LrG4Z-0005xO-SR@stork.gentoo.org
1 hwoarang 09/04/07 18:30:59
2
3 Added: configure.py.patch
4 Log:
5 Fixed bug #204877 ( thanks to Davide Pesavento <davidepesa@×××××.com> )
6 (Portage version: 2.2_rc28/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-python/PyQt4/files/configure.py.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt4/files/configure.py.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt4/files/configure.py.patch?rev=1.1&content-type=text/plain
13
14 Index: configure.py.patch
15 ===================================================================
16 diff -Naur PyQt-x11-gpl-4.4.4~orig/configure.py PyQt-x11-gpl-4.4.4/configure.py
17 --- PyQt-x11-gpl-4.4.4~orig/configure.py 2009-03-26 01:01:43.000000000 +0100
18 +++ PyQt-x11-gpl-4.4.4/configure.py 2009-03-26 01:09:50.000000000 +0100
19 @@ -666,6 +666,7 @@
20 install_dir=pydbusmoddir,
21 qt=["QtCore"],
22 debug=opts.debug,
23 + strip=0,
24 universal=sipcfg.universal
25 )
26
27 @@ -1350,6 +1351,7 @@
28 warnings=1,
29 static=opts.static,
30 debug=opts.debug,
31 + strip=0,
32 universal=sipcfg.universal
33 )
34
35 @@ -1510,7 +1512,7 @@
36 # The Qt binary installer has macx-xcode as the default.
37 args = "-spec macx-g++ " + args
38
39 - return args
40 + return " QMAKE_STRIP= " + args
41
42
43 def get_qt_configuration():