Bug 195410

Summary: qt: 64bit platforms make useless -debuginfo rpms
Product: [Fedora] Fedora Reporter: Rex Dieter <rdieter>
Component: qtAssignee: Than Ngo <than>
Status: CLOSED RAWHIDE QA Contact: Ben Levenson <benl>
Severity: medium Docs Contact:
Priority: medium    
Version: rawhide   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-06-21 15:06:26 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Rex Dieter 2006-06-15 02:50:34 UTC
mkspecs/linux-g++-64/qmake.conf contains
QMAKE_STRIP = strip
which makes any qt-based (which uses qmake) builds strip it's
binaries/libraries, which results in rpm's -debuginfo packages being useless (on
64bit platforms).  I'd venture to guess core's x86_64 qt-debuginfo rpm is empty
for the same reason... yep verified  (:

For some reason 
mkspecs/linux-g++/qmake.conf contains
QMAKE_STRIP = 
so platforms using that one are fine.

FIX: patch mkspecs/linux-g++-64/qmake.conf to have
QMAKE_STRIP =

Comment 1 Rex Dieter 2006-06-15 02:53:12 UTC
I had the same problem packaging qt4, though in my case, it was easier to spot
since it affected both 32 and 64 bit platforms.

Comment 2 Than Ngo 2006-06-21 15:06:26 UTC
it's now fixed in CVS. Thanks for your report.