You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using cmi for building a workspace the generated __init__.py files from the devel space are getting installed. This happens after the __init__.py file from the source package has been installed.
The problem is that the pattern for installing all __init__.py files from the devel space except the one in the root of the package fails.
REGEX "/@(pkg_name)/.+/__init__.pyc?$"
The /@(pkg_name)/ part actually matches the folder structure used by cmi and therefore the file devel_isolated/@(pkg_name)/lib/python2.7/dist-packages/@(pkg_name)/__init__.py matches and gets installed.
The text was updated successfully, but these errors were encountered:
When using cmi for building a workspace the generated
__init__.py
files from the devel space are getting installed. This happens after the__init__.py
file from the source package has been installed.This has initially been reported in ros/dynamic_reconfigure#21.
The problem is that the pattern for installing all
__init__.py
files from the devel space except the one in the root of the package fails.The
/@(pkg_name)/
part actually matches the folder structure used by cmi and therefore the filedevel_isolated/@(pkg_name)/lib/python2.7/dist-packages/@(pkg_name)/__init__.py
matches and gets installed.The text was updated successfully, but these errors were encountered: