0001-Fix-module-install-path-lib-instead-of-usr-lib-prefi.patch 945 B

1234567891011121314151617181920212223242526
  1. From 4f8ed39ddaf17c7dd4ddbdb88e67097f00c98173 Mon Sep 17 00:00:00 2001
  2. From: Peter Seiderer <ps.report@gmx.net>
  3. Date: Thu, 16 Jul 2015 23:11:25 +0200
  4. Subject: [PATCH] Fix module install path (/lib instead of /usr/lib prefix)
  5. Signed-off-by: Peter Seiderer <ps.report@gmx.net>
  6. ---
  7. cmake/modules/path_prefixes.cmake | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/cmake/modules/path_prefixes.cmake b/cmake/modules/path_prefixes.cmake
  10. index 3cb1fe2..9dc50a4 100644
  11. --- a/cmake/modules/path_prefixes.cmake
  12. +++ b/cmake/modules/path_prefixes.cmake
  13. @@ -113,7 +113,7 @@ set(RH_INSTALL_PREFIX_DOC
  14. # Set derivative prefixes
  15. # additional, 1
  16. -set(RH_INSTALL_PREFIX_KMODULE "${RH_INSTALL_PREFIX_LIB}/modules/${KBUILD_VERSION_STRING}/misc")
  17. +set(RH_INSTALL_PREFIX_KMODULE "/lib/modules/${KBUILD_VERSION_STRING}/misc")
  18. # Another variant
  19. #"${RH_INSTALL_PREFIX_LIB}/modules/${KBUILD_VERSION_STRING}/extra")
  20. # additional, 2
  21. --
  22. 2.1.4