Compilation error ROS_PACKAGE_PATH in groovy
Hi all,
I recently installed groovy. I'm trying to rosmake my packages but I getting this error all the time:
[ rosmake ] All 19 linestutorial_package: 0.1 sec ]
{-------------------------------------------------------------------------------
mkdir -p bin
cd build && cmake -Wdev -DCMAKE_TOOLCHAIN_FILE=/opt/ros/groovy/share/ros/core/rosbuild/rostoolchain.cmake ..
[rosbuild] Building package range_gazebo_plugin
including user's config file: /opt/ros/groovy/share/ros/rosconfig.cmake
-- USING OPTIMIZATION COMPILATION FLAGS: -mssse3 -mmmx
CMake Error at /opt/ros/groovy/share/ros/core/rosbuild/private.cmake:99 (message):
[rosbuild] rospack found package "tutorial_package" at
"/home/jose/ros-workspace/tutorial_package",
but the current directory is
"/home/jose/ros-workspace/tutorial_package".
You should double-check your ROS_PACKAGE_PATH to ensure that packages are
found in the correct precedence order.
Call Stack (most recent call first):
/opt/ros/groovy/share/ros/core/rosbuild/public.cmake:177 (_rosbuild_check_package_location)
CMakeLists.txt:12 (rosbuild_init)
-- Configuring incomplete, errors occurred!
-------------------------------------------------------------------------------}
My environment variables:
declare -x ROS_DISTRO="groovy"
declare -x ROS_ETC_DIR="/opt/ros/groovy/etc/ros"
declare -x ROS_LOG_DIR="/home/josecapriles/.ros/logs"
declare -x ROS_MASTER_URI="http://localhost:11311"
declare -x ROS_PACKAGE_PATH="/home/jose/ros-workspace:/opt/ros/groovy/share:/opt/ros/groovy/stacks"
declare -x ROS_ROOT="/opt/ros/groovy/share/ros"
declare -x ROS_WORKSPACE="/home/jose/ros-workspace"
I'm running ROS groovy on Ubuntu 12.04. Any idea what is missing in the environment configuration? or why rosmake complains about the ROS_PACKAGE_PATH?