From 8b1d06cf7edbaee226f6492ea935959cb7e7738e Mon Sep 17 00:00:00 2001 From: Herb Kuta Date: Sat, 23 Mar 2019 09:50:56 -0700 Subject: [PATCH] DRAFT pythonpath-insane.bbclass: Drop: no longer need to use target path for native Python --- classes/pythonpath-insane.bbclass | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 classes/pythonpath-insane.bbclass diff --git a/classes/pythonpath-insane.bbclass b/classes/pythonpath-insane.bbclass deleted file mode 100644 index aa69886..0000000 --- a/classes/pythonpath-insane.bbclass +++ /dev/null @@ -1,12 +0,0 @@ -# Allow python3-native import target's python libs. This is a hacky sortcut. -# -# Interfaces and msgs generation involves importing rosidl_typesupport python -# libraries. But those libraries have their own dependency on a RMW implementation -# being present. The package rmw-fastrtps-cpp which provides such implementation -# also brings in dependency on rosidl-typesupport-introspecion-cpp. -# This rosidl-typesupport-introspecion-cpp being present automatically -# (through CMake-based mechanism) runs a python script importing modules from -# that package. -# If we make native versions of all these packages then we'll end up with -# a build dependency on asio-native which doesn't exist. -export PYTHONPATH="${STAGING_DIR_HOST}${libdir}/${PYTHON_DIR}/site-packages"