https://bugs.kde.org/show_bug.cgi?id=395651
--- Comment #4 from Chris <chrisret...@gmx.com> --- As I stated in my report. It is hard coded in CMakeLists.txt in the 5.13.0 tarball, just checked github and is the same. Line 48: set(MOZILLA_DIR "${CMAKE_INSTALL_PREFIX}/lib/mozilla" CACHE STRING "Mozilla directory") I read that discussion, the way that patch is written, it would break Slackware too by removing an essential variable CMAKE_INSTALL_PREFIX On Slackware CMAKE_INSTALL_PREFIX=/usr is passed to cmake Which would end up being /lib/mozzila not /usr/lib/mozilla. My patch simply uses the base CMAKE_INSTALL_PREFIX (normally /usr) and adds KDE_INSTALL_LIBDIR which should be /lib<qual> qual being lib or lib64 as the build option passed to cmake. End up with /usr/lib64/mozilla on a Slackware64 system and /usr/lib/mozilla on a Slackware system (32-bit) -- You are receiving this mail because: You are watching all bug changes.