···11-diff --git a/kde-modules/KDEInstallDirsCommon.cmake b/kde-modules/KDEInstallDirsCommon.cmake
22-index c1d056b..d9e19f0 100644
33---- a/kde-modules/KDEInstallDirsCommon.cmake
44-+++ b/kde-modules/KDEInstallDirsCommon.cmake
55-@@ -15,35 +15,6 @@
66- # GNUInstallDirs code deals with re-configuring, but that is dealt with
77- # by the _define_* macros in this module).
88- set(_LIBDIR_DEFAULT "lib")
99--# Override this default 'lib' with 'lib64' if:
1010--# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling
1111--# - we are NOT on debian
1212--# - we are NOT on flatpak
1313--# - we are on a 64 bits system
1414--# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf
1515--# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if
1616--# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu"
1717--# See https://wiki.debian.org/Multiarch
1818--if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU")
1919-- AND NOT CMAKE_CROSSCOMPILING
2020-- AND NOT EXISTS "/etc/arch-release"
2121-- AND NOT DEFINED ENV{FLATPAK_ID})
2222-- if (EXISTS "/etc/debian_version") # is this a debian system ?
2323-- if(CMAKE_LIBRARY_ARCHITECTURE)
2424-- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}")
2525-- endif()
2626-- else() # not debian, rely on CMAKE_SIZEOF_VOID_P:
2727-- if(NOT DEFINED CMAKE_SIZEOF_VOID_P)
2828-- message(AUTHOR_WARNING
2929-- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. "
3030-- "Please enable at least one language before including KDEInstallDirs.")
3131-- else()
3232-- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
3333-- set(_LIBDIR_DEFAULT "lib64")
3434-- endif()
3535-- endif()
3636-- endif()
3737--endif()
3838-3939- set(_gnu_install_dirs_vars
4040- BINDIR