Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2021-03-22 19:10:00 +0300
committertamasmeszaros <meszaros.q@gmail.com>2021-07-26 14:16:01 +0300
commitbd3f1c6f35dca1bf0cfb3876858fccc0d20d9fde (patch)
treefb2cda49bfd55e897e132579f3df23baf3596ceb /deps
parentb82aa065ae5cc2fc7e04707fa39ea98407da2e68 (diff)
TOOLCHAIN_PREFIX shall not end with -
Diffstat (limited to 'deps')
-rw-r--r--deps/OpenSSL/OpenSSL.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/OpenSSL/OpenSSL.cmake b/deps/OpenSSL/OpenSSL.cmake
index bed30b964..a9fba205f 100644
--- a/deps/OpenSSL/OpenSSL.cmake
+++ b/deps/OpenSSL/OpenSSL.cmake
@@ -5,7 +5,7 @@ ProcessorCount(NPROC)
set(_cross_arch "")
set(_cross_comp_prefix_line "")
if (CMAKE_CROSSCOMPILING)
- set(_cross_comp_prefix_line "--cross-compile-prefix=${TOOLCHAIN_PREFIX}")
+ set(_cross_comp_prefix_line "--cross-compile-prefix=${TOOLCHAIN_PREFIX}-")
if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "aarch64" OR ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "arm64")
set(_cross_arch "linux-aarch64")