Skip to content

Commit

Permalink
[openssl-unix] Fix for issue #4001
Browse files Browse the repository at this point in the history
  • Loading branch information
ras0219-msft committed Aug 8, 2018
1 parent dbef253 commit 1e50de1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ports/openssl-unix/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ endif()

string(REGEX REPLACE "^ " "" CFLAGS "${CFLAGS}")

file(TO_NATIVE_PATH ENV_PATH "${COMPILER_ROOT};$ENV{PATH}")
if(CMAKE_HOST_WIN32)
file(TO_NATIVE_PATH ENV_PATH "${COMPILER_ROOT};$ENV{PATH}")
else()
file(TO_NATIVE_PATH ENV_PATH "${COMPILER_ROOT}:$ENV{PATH}")
endif()
set(ENV{ANDROID_DEV} "${CMAKE_SYSROOT}/usr")
set(ENV{CC} "${CMAKE_C_COMPILER}")

Expand Down
2 changes: 1 addition & 1 deletion ports/openssl-unix/CONTROL
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Source: openssl-unix
Version: 1.0.2o
Version: 1.0.2o-1
Description: OpenSSL is an open source project that provides a robust, commercial-grade, and full-featured toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols. It is also a general-purpose cryptography library.

0 comments on commit 1e50de1

Please sign in to comment.