Removing rpmlib(PayloadIsLzma) requirement

5,431

I finally found the answer here: http://www.cmake.org/pipermail/cmake/2010-March/035580.html

Looks like you need to modify the RPM spec file to include: _binary_payload w9.gzdio

Share:
5,431

Related videos on Youtube

Robert Munteanu
Author by

Robert Munteanu

Updated on September 17, 2022

Comments

  • Robert Munteanu
    Robert Munteanu over 1 year

    I'm building RPMs on my OpenSUSE 11.2 machine and uploading them to a CentOS 5 server. When trying to install, I get messages similar to:

    error: Failed dependencies:
            rpmlib(PayloadIsLzma) <= 4.4.6-1 is needed by xxx.rpm
    

    How can I fix this? Removing the LZMA compression for the RPMs when building is preferred, but I'd also work with installing an extra package on the CentOS server.

  • Robert Munteanu
    Robert Munteanu over 13 years
    Thanks! My problem is long gone through other means but it's good to know.