File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 8
8
import catkin_pkg .packages
9
9
import catkin_pkg .topological_order
10
10
11
+ ##############################################################################
12
+ # Constants
13
+ ##############################################################################
14
+
15
+ # packages that don't properly identify themselves as message packages (fix upstream).
16
+ message_package_whitelist = ['map_store' ]
17
+
11
18
##############################################################################
12
19
# Methods
13
20
##############################################################################
@@ -46,7 +53,7 @@ def index_message_package_dependencies_from_local_environment(package_name_list=
46
53
for path in reversed (package_paths ):
47
54
for package_path , package in catkin_pkg .packages .find_packages (path ).items ():
48
55
all_packages [package .name ] = (package_path , package )
49
- if has_build_depend_on_message_generation (package ):
56
+ if has_build_depend_on_message_generation (package ) or package . name in message_package_whitelist :
50
57
if package_name_list :
51
58
if package .name in package_name_list :
52
59
message_packages [package .name ] = (package_path , package )
You can’t perform that action at this time.
0 commit comments