mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 23:48:20 +00:00
python3-pybind11-json: fix Targets.cmake trying to reference host
The resulting pybind11_jsonTargets.cmake in the dev-package adds an
absolute path to python include directories in the target properties:
set_target_properties(pybind11_json PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "/usr/include/python3.13;${_IMPORT_PREFIX}/include"
)
The patch removes ${PYTHON_INCLUDE_DIRS} which is set by pybind11 from
set_target_properties to remove the poisonous host path.
Signed-off-by: Tafil Avdyli <tafil@tafhub.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 0332dae9bb)
Signed-off-by: Tafil Avdyli <tafil@tafhub.de>
Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
This commit is contained in:
committed by
Anuj Mittal
parent
560eef1dc2
commit
c88db38ad6
@@ -0,0 +1,34 @@
|
|||||||
|
From 6d4af27d1b43860d8deb3d1d2b2a910e82618ac1 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Tafil Avdyli <tafil@tafhub.de>
|
||||||
|
Date: Sat, 24 Jan 2026 09:14:03 +0100
|
||||||
|
Subject: [PATCH] CMakeLists: drop PYTHON_INCLUDE_DIRS from interface
|
||||||
|
|
||||||
|
Including PYTHON_INCLUDE_DIRS in the INTERFACE list caused a hard-coded
|
||||||
|
Python include directory (e.g. /usr/include/python3.13) to appear in the
|
||||||
|
generated Targets.cmake file. This resulted in a CMake configuration
|
||||||
|
error when the path did not exist:
|
||||||
|
|
||||||
|
Imported target "pybind11_json" includes non-existent path
|
||||||
|
"/usr/include/python3.13"
|
||||||
|
|
||||||
|
pybind11_json is header-only and does not use Python headers, so the
|
||||||
|
include path should not be exported.
|
||||||
|
|
||||||
|
Upstream-Status: Submitted [https://github.com/pybind/pybind11_json/pull/77]
|
||||||
|
Signed-off-by: Tafil Avdyli <tafil@tafhub.de>
|
||||||
|
---
|
||||||
|
CMakeLists.txt | 1 -
|
||||||
|
1 file changed, 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 0be4838..4b305e4 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -45,7 +45,6 @@ add_library(${PROJECT_NAME} INTERFACE)
|
||||||
|
|
||||||
|
target_include_directories(${PROJECT_NAME}
|
||||||
|
INTERFACE
|
||||||
|
- ${PYTHON_INCLUDE_DIRS}
|
||||||
|
$<BUILD_INTERFACE:${PYBIND11_JSON_INCLUDE_DIR}>
|
||||||
|
$<INSTALL_INTERFACE:include>)
|
||||||
|
|
||||||
@@ -3,7 +3,8 @@ LICENSE = "BSD-3-Clause"
|
|||||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=0e25ff0ec476d06d366439e1120cce98"
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=0e25ff0ec476d06d366439e1120cce98"
|
||||||
|
|
||||||
SRCREV = "b02a2ad597d224c3faee1f05a56d81d4c4453092"
|
SRCREV = "b02a2ad597d224c3faee1f05a56d81d4c4453092"
|
||||||
SRC_URI = "git://github.com/pybind/pybind11_json;branch=master;protocol=https"
|
SRC_URI = "git://github.com/pybind/pybind11_json;branch=master;protocol=https \
|
||||||
|
file://0001-CMakeLists-drop-PYTHON_INCLUDE_DIRS-from-interface.patch"
|
||||||
|
|
||||||
DEPENDS += "nlohmann-json python3-pybind11"
|
DEPENDS += "nlohmann-json python3-pybind11"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user