From 830607415dd63ca5244ab8e51f402e046b03ca85 Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Mon, 7 Mar 2016 18:00:14 -0800 Subject: python-m2crypto: fix build issue restore swig file fiddling: tmp/sysroots/qemux86/usr/include/openssl/opensslconf.h:45: Error: Unable to find 'openssl/opensslconf-64.h' error: command 'swig' failed with exit status 1 Signed-off-by: Armin Kuster Signed-off-by: Martin Jansa --- .../python/python-m2crypto_0.23.0.bb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'meta-python') diff --git a/meta-python/recipes-devtools/python/python-m2crypto_0.23.0.bb b/meta-python/recipes-devtools/python/python-m2crypto_0.23.0.bb index af8ca09545..f6f0e1f0e8 100644 --- a/meta-python/recipes-devtools/python/python-m2crypto_0.23.0.bb +++ b/meta-python/recipes-devtools/python/python-m2crypto_0.23.0.bb @@ -27,4 +27,26 @@ SWIG_FEATURES_x86-64 = "-D__x86_64__" SWIG_FEATURES ?= "" export SWIG_FEATURES +# Get around a problem with swig, but only if the +# multilib header file exists. +# +do_compile_prepend() { + if [ "${SITEINFO_BITS}" = "64" ];then + bit="64" + else + bit="32" + fi + + if [ -e ${STAGING_INCDIR}/openssl/opensslconf-${bit}.h ] ;then + for i in SWIG/_ec.i SWIG/_evp.i; do + sed -i -e "s/opensslconf.*\./opensslconf-${bit}\./" "$i" + done + elif [ -e ${STAGING_INCDIR}/openssl/opensslconf-n${bit}.h ] ;then + for i in SWIG/_ec.i SWIG/_evp.i; do + sed -i -e "s/opensslconf.*\./opensslconf-n${bit}\./" "$i" + done + fi +} + + BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf