[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[openssl-gost] [gost-engine/engine] 2b2250: Correct CMake files installation path



  Branch: refs/heads/master
  Home:   https://github.com/gost-engine/engine
  Commit: 2b22503cf83c56f27719eccce013999203e69db0
      https://github.com/gost-engine/engine/commit/2b22503cf83c56f27719eccce013999203e69db0
  Author: Craig Andrews <candrews@integralblue.com>
  Date:   2023-01-05 (Thu, 05 Jan 2023)

  Changed paths:
    M CMakeLists.txt

  Log Message:
  -----------
  Correct CMake files installation path

install(EXPORT GostEngineConfig DESTINATION share/cmake/GostEngine) will to a path like this:
/usr/GostEngine/share/cmake/GostEngine/GostEngineConfig.cmake
which is not standard or expected. These files should be installed to:
/usr/share/cmake/GostEngine/GostEngineConfig.cmake
which can be done by changing the installation line to:
install(EXPORT GostEngineConfig DESTINATION share/cmake/GostEngine)