[Bug 136377] configure doesn't detect libqt-mt correctly in fedora/redhat 64bit

David Faure faure at kde.org
Thu Dec 20 19:30:49 GMT 2007


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=136377         
faure kde org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned-bugs kde org     |faure kde org



------- Additional Comments From faure kde org  2007-12-20 20:30 -------
OK I'll commit this patch; but I think I found a bug in it...

+  if (`$PKG_CONFIG --exists qt-mt`) ; then
This opens a sub-shell and calls --exist in it, and only keeps the string output of it; I don't think this works. For proof:
(`pkg-config --exists idontexist`) && echo ok
shows ok.

I think this should be simply:
if $PKG_CONFIG --exists qt-mt; then
no?



More information about the Unassigned-bugs mailing list