ports/devel/ros-documentation/files/patch-test__test_rosbagmigration__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
452 B
Text

--- test/test_rosbagmigration/Makefile.orig 2009-07-20 03:49:11.000000000 +0200
+++ test/test_rosbagmigration/Makefile 2011-02-13 13:39:46.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))