ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Asaad Irfan's profile - activity

2023-02-13 02:19:27 -0500 received badge  Nice Question (source)
2021-10-12 02:17:01 -0500 marked best answer Invoking "make" failed

I'm using Ubuntu 12.04 & ROS Hydro. While going through this tutorial here i encountered the following error upon typing:

catkin_make

asaad@VAIO:~/catkin_ws$ catkin_make
Base path: /home/asaad/catkin_ws
Source space: /home/asaad/catkin_ws/src
Build space: /home/asaad/catkin_ws/build
Devel space: /home/asaad/catkin_ws/devel
Install space: /home/asaad/catkin_ws/install
####
#### Running command: "make cmake_check_build_system" in "/home/asaad/catkin_ws/build"
####
####
#### Running command: "make -j4 -l4" in "/home/asaad/catkin_ws/build"
####
[  0%] [  8%] Built target std_msgs_generate_messages_py
[ 16%] [ 16%] Built target std_msgs_generate_messages_cpp
Building CXX object begginer_tutorials/CMakeFiles/add_two_ints_server.dir/src/add_two_ints_server.cpp.o
Building CXX object begginer_tutorials/CMakeFiles/add_two_ints_client.dir/src/add_two_ints_client.cpp.o
[ 16%] Built target std_msgs_generate_messages_lisp
[ 25%] Built target listener
[ 33%] Built target talker
[ 50%] Built target begginer_tutorials_generate_messages_cpp
[ 83%] Built target begginer_tutorials_generate_messages_py
[100%] Built target begginer_tutorials_generate_messages_lisp
[100%] Built target begginer_tutorials_generate_messages
/home/asaad/catkin_ws/src/begginer_tutorials/src/add_two_ints_server.cpp:2:43: fatal error: beginner_tutorials/AddTwoInts.h: No such file or directory
compilation terminated.
/home/asaad/catkin_ws/src/begginer_tutorials/src/add_two_ints_client.cpp:2:43: fatal error: beginner_tutorials/AddTwoInts.h: No such file or directory
compilation terminated.
make[2]: *** [begginer_tutorials/CMakeFiles/add_two_ints_server.dir/src/add_two_ints_server.cpp.o] Error 1
make[1]: *** [begginer_tutorials/CMakeFiles/add_two_ints_server.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [begginer_tutorials/CMakeFiles/add_two_ints_client.dir/src/add_two_ints_client.cpp.o] Error 1
make[1]: *** [begginer_tutorials/CMakeFiles/add_two_ints_client.dir/all] Error 2
make: *** [all] Error 2
Invoking "make" failed

I saw the other answers related to this but couldn't find the error myself. EDITED:

The CMakeLists.txt file contains the following data:

cmake_minimum_required(VERSION 2.8.3)
project(begginer_tutorials)

## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
  roscpp
  rospy
  std_msgs
  message_generation
)

## System dependencies are found with CMake's conventions
# find_package(Boost REQUIRED COMPONENTS system)


## Uncomment this if the package has a setup.py. This macro ensures
## modules and global scripts declared therein get installed
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
# catkin_python_setup()

################################################
## Declare ROS messages, services and actions ##
################################################

## To declare and build messages, services or actions from within this
## package, follow these steps:
## * Let MSG_DEP_SET be the set of packages whose message types you use in
##   your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
## * In the file package.xml:
##   * add a build_depend and a run_depend tag for each package in MSG_DEP_SET
##   * If MSG_DEP_SET isn't empty the following dependencies might have been
##     pulled in transitively but can be declared for certainty nonetheless:
##     * add a build_depend tag for "message_generation"
##     * add a run_depend tag for "message_runtime"
## * In this file (CMakeLists.txt):
##   * add "message_generation" and every package in MSG_DEP_SET to
##     find_package(catkin REQUIRED COMPONENTS ...)
##   * add "message_runtime" and every package in MSG_DEP_SET to
##     catkin_package(CATKIN_DEPENDS ...)
##   * uncomment the add_*_files sections below as needed
##     and list every .msg/.srv/.action file to be processed
##   * uncomment the generate_messages entry below
##   * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)

## Generate messages in the 'msg' folder
 add_message_files(
   FILES
   Num.msg

 )

## Generate services ...
(more)
2018-03-13 08:04:17 -0500 received badge  Famous Question (source)
2018-03-08 19:39:15 -0500 received badge  Famous Question (source)
2017-12-05 16:53:39 -0500 marked best answer -- Configuring incomplete, errors occurred!

I have used catkin_make successfully in the past but now whenever i try to use catkin_make i get the following error( as you can see i just created this directory named "delete", but catkin_make is still not working (with this directory or any other directory newly or previously created)):

asaad@VAIO:~$ mkdir -p ~/delete/src
asaad@VAIO:~$ cd delete/src/
asaad@VAIO:~/delete/src$ catkin_init_workspace n
usage: catkin_init_workspace [-h] [workspace]
catkin_init_workspace: error: Workspace "/home/asaad/delete/src/n" does not exist
asaad@VAIO:~/delete/src$ catkin_init_workspace 
Creating symlink "/home/asaad/delete/src/CMakeLists.txt" pointing to "/opt/ros/hydro/share/catkin/cmake/toplevel.cmake"
asaad@VAIO:~/delete/src$ cd ~/delete/
asaad@VAIO:~/delete$ catkin_make
Base path: /home/asaad/delete
Source space: /home/asaad/delete/src
Build space: /home/asaad/delete/build
Devel space: /home/asaad/delete/devel
Install space: /home/asaad/delete/install
####
#### Running command: "cmake /home/asaad/delete/src -DCATKIN_DEVEL_PREFIX=/home/asaad/delete/devel -DCMAKE_INSTALL_PREFIX=/home/asaad/delete/install" in "/home/asaad/delete/build"
####
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Using CATKIN_DEVEL_PREFIX: /home/asaad/delete/devel
-- Using CMAKE_PREFIX_PATH: /opt/ros/hydro
-- This workspace overlays: /opt/ros/hydro
-- Found PythonInterp: /usr/bin/python (found version "2.7.3")
-- Using PYTHON_EXECUTABLE: /usr/bin/python
-- Python version: 2.7
-- Using Debian Python package layout
-- Using CATKIN_ENABLE_TESTING: ON
-- Call enable_testing()
-- Using CATKIN_TEST_RESULTS_DIR: /home/asaad/delete/build/test_results
-- Looking for include files CMAKE_HAVE_PTHREAD_H
-- Looking for include files CMAKE_HAVE_PTHREAD_H - found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE 
-- Found gtest sources under '/usr/src/gtest': gtests will be built
-- catkin 0.5.90
-- Found Git: /usr/bin/git 
-- Boost version: 1.46.1
-- Found the following Boost libraries:
--   python
--   thread
--   system
-- Found PythonLibs: /usr/lib/libpython2.7.so 
CMake Error: File /home/asaad/delete/src/package.xml does not exist.
CMake Error at /opt/ros/hydro/share/catkin/cmake/stamp.cmake:10 (configure_file):
  configure_file Problem configuring file
Call Stack (most recent call first):
  /opt/ros/hydro/share/catkin/cmake/catkin_package_xml.cmake:61 (stamp)
  /opt/ros/hydro/share/catkin/cmake/catkin_package_xml.cmake:39 (_catkin_package_xml)
  /opt/ros/hydro/share/catkin/cmake/catkin_package.cmake:95 (catkin_package_xml)
  CMakeLists.txt:6 (catkin_package)


CMake Error at /opt/ros/hydro/share/catkin/cmake/catkin_package.cmake:112 (message):
  catkin_package() 'catkin' must be listed as a buildtool dependency in the
  package.xml
Call Stack (most recent call first):
  /opt/ros/hydro/share/catkin/cmake/catkin_package.cmake:98 (_catkin_package)
  CMakeLists.txt:6 (catkin_package)


-- Configuring incomplete, errors occurred!
Invoking "cmake" failed
asaad@VAIO:~/delete$
2017-07-24 08:19:17 -0500 received badge  Famous Question (source)
2017-07-01 02:37:38 -0500 received badge  Notable Question (source)
2017-07-01 02:37:38 -0500 received badge  Popular Question (source)
2017-05-29 11:56:33 -0500 received badge  Notable Question (source)
2017-05-29 11:56:33 -0500 received badge  Famous Question (source)
2017-05-16 19:30:56 -0500 received badge  Teacher (source)
2017-04-20 14:51:41 -0500 marked best answer How can i link urdf file of turtlebot arm with turtlebot?

I am trying to attach turtlebot arm with turtlebot but i am having problem linking these urdf, Can someone provide me a list of steps of instruction to link these parts? Links to the packages https://github.com/turtlebot/turtlebo... https://github.com/turtlebot/turtlebot

2017-04-20 13:24:58 -0500 marked best answer Unauthorized: {"error":"unauthorized","reason":"You are not a db or server admin."}

I'm following this tutorial .When i try to upload a bag file using:

 rosrun object_recognition_capture upload -a 'asaad' -e 'myemai@email.com' -i silk.bag -n 'silk' -d 'Silk brand soy milk.' --commit milk, soy, kitchen, tod

i get the following error:

Unauthorized: {"error":"unauthorized","reason":"You are not a db or server admin."}

I'm not very familiar with couchDB so please bear with this question( which i know is of a very basic nature). The same happens when i try:

rosrun object_recognition_core push.sh

or any other such command related to COuchDB, for that matter.

I'm using Ubuntu 12.04 & ROS Hydro.

2017-04-20 13:23:39 -0500 received badge  Famous Question (source)
2017-03-27 19:59:06 -0500 received badge  Taxonomist
2017-02-27 23:29:29 -0500 received badge  Popular Question (source)
2017-02-27 23:29:29 -0500 received badge  Notable Question (source)
2017-02-27 23:29:29 -0500 received badge  Famous Question (source)
2016-11-19 20:14:56 -0500 received badge  Popular Question (source)
2016-11-19 20:14:56 -0500 received badge  Notable Question (source)
2016-09-14 14:44:03 -0500 marked best answer How to add a new directory to ROS_PACKAGE_PATH?

I'm working on ROS hydro ,Ubuntu 12.04.

I've created a new directory and i'm unable to add it to ROS_PACKAGE_PATH. Here's what i'm writing to do this:

export ROS_PACKAGE_PATH= /home/user/<name_of-directory_i_want_to_add>:/opt/ros/hydro/share:/opt/ros/hydro/stacks:$ROS_PACKAGE_PATH

(All in one line)

where /opt/ros/hydro/share:/opt/ros/hydro/stacks is what i get when i type: echo $ROS_PACKAGE_PATH

How do i add my directory to the ROS_PACKAGE_PATH?

2016-09-04 21:55:36 -0500 received badge  Famous Question (source)
2016-06-12 16:00:20 -0500 received badge  Famous Question (source)
2016-06-11 12:22:35 -0500 received badge  Famous Question (source)
2016-05-10 16:43:05 -0500 received badge  Notable Question (source)
2016-05-10 16:43:05 -0500 received badge  Famous Question (source)
2016-05-10 00:06:55 -0500 answered a question openni_launch fails to start on ROS hydro

I re installed openni 1.5.4 ,NITE 1.5.2 and the mask image is now shown. My problem's solved. The link i used to install these was [ http://www.20papercups.net/programmin... ]

2016-05-06 06:51:09 -0500 asked a question openni_launch fails to start on ROS hydro

I'm using ROS Hydro on Ubuntu 12.04 on a Roomba 4400 base. I've been using

roslaunch openni_launch openni.launch

to launch openni. The last time i successfully launched openni was today( a few hours before this post). But now i receive the following error when i try to launch openni or any other command which uses kinect ( e.g. roslaunch turtlebot_follower follower.launch) :

 terminate called after throwing an instance of 'openni_wrapper::OpenNIException'

  what():  unsigned int openni_wrapper::OpenNIDriver::updateDeviceList() @ /tmp/buildd/ros-hydro-openni-camera-1.9.2-0precise-20150515-0253/src/openni_driver.cpp @ 125 : enumerating image nodes failed. Reason: One or more of the following nodes could not be enumerated:

Image: PrimeSense/SensorV2/5.1.0.41: Got a timeout while waiting for a network command to complete!

[FATAL] [1462534504.287888196]: Service call failed!
[FATAL] [1462534504.288046458]: Service call failed!
[FATAL] [1462534504.288046461]: Service call failed!
[FATAL] [1462534504.288079748]: Service call failed!
[FATAL] [1462534504.288330007]: Service call failed!
[FATAL] [1462534504.288357209]: Service call failed!
[FATAL] [1462534504.288403796]: Service call failed!
[FATAL] [1462534504.288477609]: Service call failed!
[FATAL] [1462534504.288604595]: Service call failed!
[FATAL] [1462534504.288768839]: Service call failed!
[FATAL] [1462534504.288772040]: Service call failed!
[FATAL] [1462534504.288905728]: Service call failed!
[FATAL] [1462534504.288905732]: Service call failed!
[FATAL] [1462534504.289059881]: Service call failed!
[FATAL] [1462534504.289899319]: Service call failed!
[FATAL] [1462534504.290088786]: Service call failed!
[camera/camera_nodelet_manager-2] process has died [pid 6531, exit code -6, cmd /opt/ros/hydro/lib/nodelet/nodelet manager __name:=camera_nodelet_manager __log:=/home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-camera_nodelet_manager-2.log].
log file: /home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-camera_nodelet_manager-2*.log
[camera/debayer-4] process has died [pid 6569, exit code 255, cmd /opt/ros/hydro/lib/nodelet/nodelet load image_proc/debayer camera_nodelet_manager --no-bond image_raw:=rgb/image_raw image_mono:=rgb/image_mono image_color:=rgb/image_color __name:=debayer __log:=/home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-debayer-4.log].
log file: /home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-debayer-4*.log
[camera/rectify_mono-5] process has died [pid 6583, exit code 255, cmd /opt/ros/hydro/lib/nodelet/nodelet load image_proc/rectify camera_nodelet_manager --no-bond image_mono:=rgb/image_mono image_rect:=rgb/image_rect_mono __name:=rectify_mono __log:=/home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-rectify_mono-5.log].
log file: /home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-rectify_mono-5*.log
[camera/rectify_color-6] process has died [pid 6597, exit code 255, cmd /opt/ros/hydro/lib/nodelet/nodelet load image_proc/rectify camera_nodelet_manager --no-bond image_mono:=rgb/image_color image_rect:=rgb/image_rect_color __name:=rectify_color __log:=/home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-rectify_color-6.log].
log file: /home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-rectify_color-6*.log
[camera/depth_metric_rect-9] process has died [pid 6639, exit code 255, cmd /opt/ros/hydro/lib/nodelet/nodelet load depth_image_proc/convert_metric camera_nodelet_manager --no-bond image_raw:=depth/image_rect_raw image:=depth/image_rect __name:=depth_metric_rect __log:=/home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-depth_metric_rect-9.log].
log file: /home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-depth_metric_rect-9*.log
[camera/points_xyzrgb_sw_registered-13] process has died [pid 6695, exit code 255, cmd /opt/ros/hydro/lib/nodelet/nodelet load depth_image_proc/point_cloud_xyzrgb camera_nodelet_manager --no-bond rgb/image_rect_color:=rgb/image_rect_color rgb/camera_info:=rgb/camera_info depth_registered/image_rect:=depth_registered/sw_registered/image_rect_raw depth_registered/points:=depth_registered/points __name:=points_xyzrgb_sw_registered __log:=/home/asaad/.ros/log/8593b2ce-137e-11e6-b5d3-90004ecd8dc9/camera-points_xyzrgb_sw_registered-13.log].
log file: /home ...
(more)
2016-05-02 08:15:45 -0500 received badge  Famous Question (source)
2016-04-30 21:33:49 -0500 received badge  Notable Question (source)
2016-04-24 11:54:49 -0500 marked best answer E: Unable to locate package ros-hydro-rqt_reconfigure

I'm using Ubuntu 12.04 with ROS hydro.I'm trying to follow this tutorial

when i type:

 sudo apt-get install ros-hydro-rviz ros-hydro-rqt_reconfigure ros-hydro-openni*

i get the following output:

    asaad@VAIO:~$ sudo apt-get install ros-hydro-rviz ros-hydro-rqt_reconfigure ros-hydro-openni*
    [sudo] password for asaad: 
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Note, selecting 'ros-hydro-openni-tracker' for regex 'ros-hydro-openni*'
    Note, selecting 'ros-hydro-openni2-launch' for regex 'ros-hydro-openni*'
    Note, selecting 'ros-hydro-openni2-camera' for regex 'ros-hydro-openni*'
    Note, selecting 'ros-hydro-openni-launch' for regex 'ros-hydro-openni*'
    Note, selecting 'ros-hydro-openni-camera' for regex 'ros-hydro-openni*'
    Note, selecting 'ros-hydro-openni-tracker-jsk-patch' for regex 'ros-hydro-openni*'
    E: Unable to locate package ros-hydro-rqt_reconfigure
    asaad@VAIO:~$
2016-04-21 06:22:28 -0500 received badge  Famous Question (source)
2016-04-13 07:59:28 -0500 received badge  Popular Question (source)
2016-03-24 02:25:08 -0500 asked a question Unable to launch minimal.launch for turtlebot arm

I'm tryin to launch the minimal.launch file in turtlebot_bringup folder but i keep getting the following error:

unused args [rapp_preferred_configuration_file, capabilities_package_whitelist, interactions, capabilities_blacklist, screen, auto_rapp_installation, rapp_package_whitelist, capabilities, interactions_list, zeroconf, robot_description, capabilities_nodelet_manager_name, capabilities_parameters, auto_start_rapp, zeroconf_name, rapp_package_blacklist, capabilities_server_name, zeroconf_port] for include of [/opt/ros/hydro/share/rocon_app_manager/launch/standalone.launch]

I'm using UBuntu 12.04 & ROS Hydro.

2016-03-08 21:38:56 -0500 edited question Unknown CMake command "ecl_detect_filesystem".

I'm trying to build my turtlebot_arm package on ROS Hydro (Ubuntu 12.04) using

catkin_make

but i get the following error:

asaad@VAIO:~/turtlebot_arm$ catkin_make
Base path: /home/asaad/turtlebot_arm
Source space: /home/asaad/turtlebot_arm/src
Build space: /home/asaad/turtlebot_arm/build
Devel space: /home/asaad/turtlebot_arm/devel
Install space: /home/asaad/turtlebot_arm/install
####
#### Running command: "make cmake_check_build_system" in "/home/asaad/turtlebot_arm/build"
####
-- Using CATKIN_DEVEL_PREFIX: /home/asaad/turtlebot_arm/devel
-- Using CMAKE_PREFIX_PATH: /home/asaad/turtlebot_arm/devel;/home/asaad/ecto_image_pipeline/devel;/opt/ros/hydro
-- This workspace overlays: /home/asaad/turtlebot_arm/devel;/home/asaad/ecto_image_pipeline/devel;/opt/ros/hydro
-- Using PYTHON_EXECUTABLE: /usr/bin/python
-- Python version: 2.7
-- Using Debian Python package layout
-- Using CATKIN_ENABLE_TESTING: ON
-- Call enable_testing()
-- Using CATKIN_TEST_RESULTS_DIR: /home/asaad/turtlebot_arm/build/test_results
-- Found gtest sources under '/usr/src/gtest': gtests will be built
-- catkin 0.5.90
-- BUILD_SHARED_LIBS is on
WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0).
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- ~~  traversing 75 packages in topological order:
-- ~~  - arbotix (metapackage)
-- ~~  - arbotix_controllers
-- ~~  - arbotix_firmware
-- ~~  - arbotix_python
-- ~~  - arbotix_sensors
-- ~~  - ecl_core (metapackage)
-- ~~  - ecl_command_line
-- ~~  - ecl_eigen
-- ~~  - ecl_exceptions
-- ~~  - ecl_filesystem
-- ~~  - ecl_mpl
-- ~~  - ecl_time
-- ~~  - ecl_ipc
-- ~~  - ecl_type_traits
-- ~~  - ecl_concepts
-- ~~  - ecl_converters
-- ~~  - ecl_formatters
-- ~~  - ecl_math
-- ~~  - ecl_linear_algebra
-- ~~  - ecl_statistics
-- ~~  - ecl_utilities
-- ~~  - ecl_containers
-- ~~  - ecl_geometry
-- ~~  - ecl_threads
-- ~~  - ecl_devices
-- ~~  - ecl_sigslots
-- ~~  - ecl_streams
-- ~~  - ecl_core_apps
-- ~~  - roslint
-- ~~  - rospeex (metapackage)
-- ~~  - rospeex_audiomonitor
-- ~~  - rospeex_launch
-- ~~  - arbotix_msgs
-- ~~  - linux_hardware
-- ~~  - rospeex_msgs
-- ~~  - turtlebot (metapackage)
-- ~~  - turtlebot_arm (metapackage)
-- ~~  - turtlebot_arm_bringup
-- ~~  - turtlebot_arm_description
-- ~~  - turtlebot_arm_moveit_demos
-- ~~  - turtlebot_bringup
-- ~~  - turtlebot_capabilities
-- ~~  - turtlebot_dashboard
-- ~~  - turtlebot_rviz_launchers
-- ~~  - turtlebot_viz (metapackage)
-- ~~  - rospeex_core
-- ~~  - rospeex_if
-- ~~  - rospeex_samples
-- ~~  - rospeex_webaudiomonitor
-- ~~  - turtlebot_arm_kinect_calibration
-- ~~  - turtlebot_interactive_markers
-- ~~  - turtlebot_arm_ikfast_plugin
-- ~~  - turtlebot_arm_block_manipulation
-- ~~  - turtlebot_arm_moveit_config
-- ~~  - turtlebot_description
-- ~~  - yocs_ar_pair_approach
-- ~~  - yocs_cmd_vel_mux
-- ~~  - yocs_controllers
-- ~~  - yocs_keyop
-- ~~  - yocs_localization_manager
-- ~~  - yocs_math_toolkit
-- ~~  - yocs_ar_marker_tracking
-- ~~  - yocs_diff_drive_pose_controller
-- ~~  - yocs_msgs
-- ~~  - yocs_ar_pair_tracking
-- ~~  - yocs_joyop
-- ~~  - yocs_navi_toolkit
-- ~~  - yocs_navigator
-- ~~  - yocs_rapps
-- ~~  - yocs_safety_controller
-- ~~  - yocs_velocity_smoother
-- ~~  - yocs_virtual_sensor
-- ~~  - yocs_waypoint_provider
-- ~~  - yocs_waypoints_navi
-- ~~  - yujin_ocs (metapackage)
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- +++ processing catkin metapackage: 'arbotix'
-- ==> add_subdirectory(arbotix_ros/arbotix)
-- +++ processing catkin package: 'arbotix_controllers'
-- ==> add_subdirectory(arbotix_ros/arbotix_controllers)
-- +++ processing catkin package: 'arbotix_firmware'
-- ==> add_subdirectory(arbotix_ros/arbotix_firmware)
-- +++ processing catkin package: 'arbotix_python'
-- ==> add_subdirectory(arbotix_ros/arbotix_python)
-- +++ processing catkin package: 'arbotix_sensors'
-- ==> add_subdirectory(arbotix_ros/arbotix_sensors)
-- +++ processing catkin metapackage: 'ecl_core'
-- ==> add_subdirectory(ecl_core/ecl_core)
-- +++ processing catkin package: 'ecl_command_line'
-- ==> add_subdirectory(ecl_core/ecl_command_line)
-- +++ processing catkin package: 'ecl_eigen'
-- ==> add_subdirectory(ecl_core/ecl_eigen)
-- Eigen found (include: /usr/include/eigen3)
-- +++ processing catkin package: 'ecl_exceptions'
-- ==> add_subdirectory(ecl_core/ecl_exceptions)
-- +++ processing catkin package: 'ecl_filesystem'
-- ==> add_subdirectory(ecl_core/ecl_filesystem)
CMake Error at ecl_core/ecl_filesystem/CMakeLists.txt:18 (ecl_detect_filesystem):
  Unknown CMake command "ecl_detect_filesystem".


-- Configuring incomplete, errors occurred!
make: *** [cmake_check_build_system] Error 1
Invoking "make cmake_check_build_system" failed

I've tried reinstalling all ecl packages using

sudo apt-get install ros-hydro-ecl-*

but this doesnt solve the problem either.