summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch')
-rw-r--r--meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch b/meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch
new file mode 100644
index 000000000..c3651e94a
--- /dev/null
+++ b/meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch
@@ -0,0 +1,30 @@
1From 7f7e2be01b4fa6580ce27f668e61adf37853ad67 Mon Sep 17 00:00:00 2001
2From: Schrijvers Luc <begasus@gmail.com>
3Date: Wed, 18 Sep 2019 11:35:43 +0200
4Subject: [PATCH] Fix "include" directory installation. the variable
5 INSTALL_INCLUDE_DIR already exists, and defaults to include if not
6 specificied otherwise. Using it allows people to customize the installation
7 from outside, fixing issues with other OS like Haiku
8
9Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
10Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
11---
12 cmake/CMakeHelpers.cmake | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/cmake/CMakeHelpers.cmake b/cmake/CMakeHelpers.cmake
16index 1478f4b..f603632 100644
17--- a/cmake/CMakeHelpers.cmake
18+++ b/cmake/CMakeHelpers.cmake
19@@ -80,7 +80,7 @@ macro (final_target)
20 endif ()
21
22 install (DIRECTORY ${CMAKE_SOURCE_DIR}/${TARGET_NAME}
23- DESTINATION include/
24+ DESTINATION ${INSTALL_INCLUDE_DIR}/
25 FILES_MATCHING PATTERN "*.hpp*")
26 endmacro ()
27
28--
292.17.1
30