]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
Correct CMake files installation path
authorCraig Andrews <candrews@integralblue.com>
Tue, 3 Jan 2023 22:42:02 +0000 (17:42 -0500)
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>
Thu, 5 Jan 2023 20:53:46 +0000 (23:53 +0300)
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)


No differences found