Skip to content

Commit

Permalink
Land libressl#1119 - ensure cmake install honors --prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
botovq committed Oct 29, 2024
2 parents f9df014 + 1b2c793 commit 240c669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -449,10 +449,10 @@ if(OPENSSLDIR STREQUAL "")
if(WIN32)
set(OPENSSLDIR "C:/Windows/libressl/ssl")
else()
set(OPENSSLDIR "${CMAKE_INSTALL_PREFIX}/etc/ssl")
set(OPENSSLDIR "${CMAKE_INSTALL_SYSCONFDIR}/ssl")
endif()

set(CONF_DIR "${CMAKE_INSTALL_PREFIX}/etc/ssl")
set(CONF_DIR "${CMAKE_INSTALL_SYSCONFDIR}/ssl")
else()
set(CONF_DIR "${OPENSSLDIR}")
endif()
Expand Down

0 comments on commit 240c669

Please sign in to comment.