mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
eb8090f27a
- build failure with boost 1.71
- bad installation of header files correct version on some OSes.
- fix version minor number
- fix Scons script not being Python3 ready
- build examples and tests only if ptest is enabled in DISTRO_FEATURES
- do not depend on websocketpp from -dev package, because this is an header only dev package for now
Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 7cd2604172)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From 7f7e2be01b4fa6580ce27f668e61adf37853ad67 Mon Sep 17 00:00:00 2001
|
|
From: Schrijvers Luc <begasus@gmail.com>
|
|
Date: Wed, 18 Sep 2019 11:35:43 +0200
|
|
Subject: [PATCH] Fix "include" directory installation. the variable
|
|
INSTALL_INCLUDE_DIR already exists, and defaults to include if not
|
|
specificied otherwise. Using it allows people to customize the installation
|
|
from outside, fixing issues with other OS like Haiku
|
|
|
|
Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
|
|
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
|
|
---
|
|
cmake/CMakeHelpers.cmake | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/cmake/CMakeHelpers.cmake b/cmake/CMakeHelpers.cmake
|
|
index 1478f4b..f603632 100644
|
|
--- a/cmake/CMakeHelpers.cmake
|
|
+++ b/cmake/CMakeHelpers.cmake
|
|
@@ -80,7 +80,7 @@ macro (final_target)
|
|
endif ()
|
|
|
|
install (DIRECTORY ${CMAKE_SOURCE_DIR}/${TARGET_NAME}
|
|
- DESTINATION include/
|
|
+ DESTINATION ${INSTALL_INCLUDE_DIR}/
|
|
FILES_MATCHING PATTERN "*.hpp*")
|
|
endmacro ()
|
|
|
|
--
|
|
2.17.1
|
|
|