Wrong install directory
iluetkeb opened this issue · 3 comments
utilities.hpp is currently installed to /include/rosparam_handler/rosparam_handler/utilities.hpp -- note the double occurence of "rosparam_handler" in the path. This leads to failures when including it in generated parameter configuration files.
This problem does not occur when you do not have an "install" directory in your workspace, which may explain why it is commonly missed. However, it is unfortunately also present in the currently distributed version of the rosparam_handler package!
I surmise the cause of the problem is that because dynamic_reconfigure already creates the target directory, and thus the subsequence copy-step accidentally copies the whole directory instead of its contents.
A quick fix is to replace the "DIRECTORY" form of the install directive with the "FILES" form. See the following patch. Since you only have one header, it should be fine.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a0d0437..d10ecfb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -31,7 +31,7 @@ install(
)
install(
- DIRECTORY include/rosparam_handler/
+ FILES include/rosparam_handler/utilities.hpp
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)
Hi, thanks for reporting the issue. It is already fixed in PR #48 that is about to be merged 👍