diff mbox series

[meta-python] python3-m2crypto: fix python3-m2crypto-native do_configure:prepend()

Message ID 20260220005225.401958-1-geoffrey.parker@arthrex.com
State New
Headers show
Series [meta-python] python3-m2crypto: fix python3-m2crypto-native do_configure:prepend() | expand

Commit Message

Geoff Parker Feb. 20, 2026, 12:52 a.m. UTC
The recent workaround for https://github.com/swiftlang/swift/issues/69311
breaks python3-m2crypto-native, with error about missing e_os2.h file in
recipe-sysroot-native.

Apply do_configure:prepend to class-target only to fix.

Signed-off-by: Geoff Parker <geoffrey.parker@arthrex.com>
---
 meta-python/recipes-devtools/python/python3-m2crypto_0.46.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-m2crypto_0.46.2.bb b/meta-python/recipes-devtools/python/python3-m2crypto_0.46.2.bb
index bd7a2369bd..abe79671d2 100644
--- a/meta-python/recipes-devtools/python/python3-m2crypto_0.46.2.bb
+++ b/meta-python/recipes-devtools/python/python3-m2crypto_0.46.2.bb
@@ -44,7 +44,7 @@  export SWIG_FEATURES
 
 export STAGING_DIR
 
-do_configure:prepend() {
+do_configure:prepend:class-target() {
     # workaround for https://github.com/swiftlang/swift/issues/69311
     sed -i "/sys\/types.h/d" ${RECIPE_SYSROOT}${includedir}/openssl/e_os2.h
 }