This gets rid of some annoying warnings and allows GNU make to parallelise more parts of a deb-pkg build. The message is ... make[3]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. ... so I've added the '+' as suggested. Signed-off-by: Dave Gordon <david.s.gordon@xxxxxxxxx> --- scripts/package/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/package/Makefile b/scripts/package/Makefile index 99ca6e7..0dbfae7 100644 --- a/scripts/package/Makefile +++ b/scripts/package/Makefile @@ -88,7 +88,7 @@ quiet_cmd_builddeb = BUILDDEB deb-pkg: FORCE $(MAKE) KBUILD_SRC= - $(call cmd,builddeb) + +$(call cmd,builddeb) clean-dirs += $(objtree)/debian/ -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html