Skip to content

Commit

Permalink
fix handling spaces in folder names (ros/catkin#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Mar 5, 2013
1 parent c10b62a commit f7c77a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/rosunit/cmake/rosunit-extras.cmake.em
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ macro(rosunit_initialize_tests)
@[if DEVELSPACE]@
# find binary and scripts in develspace
find_program(ROSUNIT_EXE rosunit
PATHS @(PROJECT_SOURCE_DIR)/scripts
PATHS "@(PROJECT_SOURCE_DIR)/scripts"
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH)
if(NOT ROSUNIT_EXE)
message(FATAL_ERROR "'rosunit' not found")
Expand All @@ -13,7 +13,7 @@ macro(rosunit_initialize_tests)
@[else]@
# find binary and scripts in installspace
find_program(ROSUNIT_EXE rosunit
PATHS @(CMAKE_INSTALL_PREFIX)/bin
PATHS "@(CMAKE_INSTALL_PREFIX)/bin"
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH)
if(NOT ROSUNIT_EXE)
message(FATAL_ERROR "'rosunit' not found")
Expand Down

0 comments on commit f7c77a8

Please sign in to comment.