summaryrefslogtreecommitdiff
path: root/net-p2p/monero/files/0.16.0.1-translations-use-host-compiler.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/monero/files/0.16.0.1-translations-use-host-compiler.patch')
-rw-r--r--net-p2p/monero/files/0.16.0.1-translations-use-host-compiler.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/net-p2p/monero/files/0.16.0.1-translations-use-host-compiler.patch b/net-p2p/monero/files/0.16.0.1-translations-use-host-compiler.patch
deleted file mode 100644
index 1dd1af02..00000000
--- a/net-p2p/monero/files/0.16.0.1-translations-use-host-compiler.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From f5670abe068eb90650533ff64a354568ab47b84a Mon Sep 17 00:00:00 2001
-From: Bertrand Jacquin <bertrand@jacquin.bzh>
-Date: Sat, 30 Nov 2019 02:09:14 +0000
-Subject: [PATCH] translations: use host compiler
-
-Do not pass target compiler and compiler flags as
-generate_translations_header need to be created using host compiler and
-compiler flags
----
- CMakeLists.txt | 7 ++++++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index d9ec866e49ec..882bc96c56a2 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -453,7 +453,12 @@ ExternalProject_Add(generate_translations_header
- SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/translations"
- BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/translations"
- STAMP_DIR ${LRELEASE_PATH}
-- CMAKE_ARGS -DLRELEASE_PATH=${LRELEASE_PATH}
-+ CMAKE_ARGS
-+ -DCMAKE_C_COMPILER=$ENV{BUILD_CC}
-+ -DCMAKE_CXX_COMPILER=$ENV{BUILD_CXX}
-+ -DCMAKE_C_FLAGS=$ENV{BUILD_CFLAGS}
-+ -DCMAKE_CXX_FLAGS=$ENV{BUILD_CXXFLAGS}
-+ -DLRELEASE_PATH=${LRELEASE_PATH}
- INSTALL_COMMAND cmake -E echo "")
- include_directories("${CMAKE_CURRENT_BINARY_DIR}/translations")
- add_subdirectory(external)