aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2019-06-10 06:45:00 -0500
committerBrent Cook <busterb@gmail.com>2019-06-10 06:49:34 -0500
commit83012fe34a105957a19eb3bfa6e044f16202938f (patch)
tree9f40c5aad3a677bdbd64b2552c43698e4ab026a5
parent0e8b7c1ef9bd7c313bf60ed0701809645978c3f6 (diff)
downloadportable-83012fe34a105957a19eb3bfa6e044f16202938f.tar.gz
portable-83012fe34a105957a19eb3bfa6e044f16202938f.tar.bz2
portable-83012fe34a105957a19eb3bfa6e044f16202938f.zip
let cmake handle quoting itself
-rw-r--r--crypto/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index 4c902ad..3b98841 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -930,9 +930,9 @@ else()
930endif() 930endif()
931 931
932if(NOT "${OPENSSLDIR}" STREQUAL "") 932if(NOT "${OPENSSLDIR}" STREQUAL "")
933 add_definitions(-DOPENSSLDIR=\"${OPENSSLDIR}\") 933 add_definitions(-DOPENSSLDIR=${OPENSSLDIR})
934else() 934else()
935 add_definitions(-DOPENSSLDIR=\"${CMAKE_INSTALL_PREFIX}/etc/ssl\") 935 add_definitions(-DOPENSSLDIR=${CMAKE_INSTALL_PREFIX}/etc/ssl)
936endif() 936endif()
937 937
938file(READ ${CMAKE_CURRENT_SOURCE_DIR}/crypto.sym SYMS) 938file(READ ${CMAKE_CURRENT_SOURCE_DIR}/crypto.sym SYMS)