ports/devel/ros-documentation/files/patch-test__test_rosbag__Makefile
Rene Ladan 09bc610a2c - Update to 1.2.5
- Remove patch integrated upstream
- New patches to use GNU make which supports the -l parameter, sent upstream
2011-02-13 16:27:13 +00:00

14 lines
434 B
Text

--- test/test_rosbag/Makefile.orig 2010-05-06 00:22:45.000000000 +0200
+++ test/test_rosbag/Makefile 2011-02-13 13:20:26.000000000 +0100
@@ -4,7 +4,11 @@
@mkdir -p build
-mkdir -p bin
cd build && cmake -DCMAKE_TOOLCHAIN_FILE=`rospack find rosbuild`/rostoolchain.cmake ..
+ifneq ($(MAKE),)
+ cd build && $(MAKE) $(ROS_PARALLEL_JOBS)
+else
cd build && make $(ROS_PARALLEL_JOBS)
+endif
PACKAGE_NAME=$(shell basename $(PWD))