This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: Use $(MAKE) rather then make in Makefiles calling others Author: Hans de Goede <[email protected]> Date: Sun Jan 23 12:16:54 2011 +0100 This fixes the: "jobserver unavailable: using -j1. Add `+' to parent make rule" messages seen when doing a parallel build. Makefile | 2 +- contrib/test/Makefile | 4 ++-- utils/Makefile | 16 ++++++++-------- 3 files changed, 11 insertions(+), 11 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=ad1bfbbea5960243fdaf93a6d3386ff0c65b6337 diff --git a/Makefile b/Makefile index ad2bbdf..fa0cb05 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ sync-with-kernel: cp -a $(KERNEL_DIR)/include/linux/videodev2.h include/linux cp -a $(KERNEL_DIR)/include/linux/ivtv.h include/linux cp -a $(KERNEL_DIR)/include/media/v4l2-chip-ident.h include/media - make -C utils $@ + $(MAKE) -C utils $@ clean:: rm -f include/*/*~ diff --git a/contrib/test/Makefile b/contrib/test/Makefile index 738327f..5136ade 100644 --- a/contrib/test/Makefile +++ b/contrib/test/Makefile @@ -16,10 +16,10 @@ all: $(TARGETS) install: ../../utils/libv4l2util/libv4l2util.a: ../../utils/libv4l2util/v4l2_driver.c ../../utils/libv4l2util/frequencies.c - make -C ../../utils/libv4l2util libv4l2util.a + $(MAKE) -C ../../utils/libv4l2util libv4l2util.a ../../lib/libv4l2/libv4l2.so: - make -C ../../lib + $(MAKE) -C ../../lib driver-test: driver-test.o ../../utils/libv4l2util/libv4l2util.a $(CC) $(LDFLAGS) -o $@ $^ diff --git a/utils/Makefile b/utils/Makefile index b458b85..935214f 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -2,12 +2,12 @@ SUBDIRS=libv4l2util decode_tm6000 keytable rds v4l2-compliance v4l2-ctl v4l2-dbg all install: @for i in $(SUBDIRS); do \ - make -C $$i $@; \ + $(MAKE) -C $$i $@; \ done # Test if libsysfs is installed @-if [ -f /usr/include/sysfs/libsysfs.h ]; then \ - make -C v4l2-sysfs-path $@; \ + $(MAKE) -C v4l2-sysfs-path $@; \ fi # Test whether qmake is installed, and whether it is for qt4. @@ -24,16 +24,16 @@ all install: fi sync-with-kernel: - make -C keytable $@ - make -C v4l2-dbg $@ - make -C xc3028-firmware $@ + $(MAKE) -C keytable $@ + $(MAKE) -C v4l2-dbg $@ + $(MAKE) -C xc3028-firmware $@ clean:: @for i in $(SUBDIRS); do \ - make -C $$i $@; \ + $(MAKE) -C $$i $@; \ done - make -C v4l2-sysfs-path $@ - if [ -f qv4l2/Makefile ]; then make -C qv4l2 $@; fi + $(MAKE) -C v4l2-sysfs-path $@ + if [ -f qv4l2/Makefile ]; then $(MAKE) -C qv4l2 $@; fi rm -f qv4l2/Makefile qv4l2/qv4l2 include ../Make.rules _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
