1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Thu, 20 Jan 2022 18:58:57 +0100
Subject: Fix default plugin location
cmake/rviz-extras.cmake.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmake/rviz-extras.cmake.in b/cmake/rviz-extras.cmake.in
index 2e29264..158be94 100644
@@ -14,7 +14,7 @@ else()
# The file being included is generated by src/rviz/default_plugin/CMakeLists.txt
include("${rviz_DIR}/default_plugin_location.cmake")
set(rviz_DEFAULT_PLUGIN_LIBRARIES
- "${rviz_DIR}/../../../@CATKIN_PACKAGE_LIB_DESTINATION@/${rviz_DEFAULT_PLUGIN_FILE_NAME}")
+ "${rviz_DIR}/../../../../@CATKIN_PACKAGE_LIB_DESTINATION@/${rviz_DEFAULT_PLUGIN_FILE_NAME}")
else()
message(FATAL_ERROR "the default_plugin_location.cmake file was not found and is required")
endif()
|