Package: kernel-package Version: 13.014 Severity: normal For some reason I have been unable to get make-kpkg to use the -j value passed to it. If I explicitly add a line directly before the do_parallel check setting the value it does use it at that point. Perhaps its somehow getting unset after being passed at the command line originally?
-- /usr/share/kernel-package/ruleset/misc/config.mk CONCURRENCY_LEVEL=8 <--- Added it here ifneq ($(strip $(CONCURRENCY_LEVEL)),) do_parallel = -j$(CONCURRENCY_LEVEL) -- Before change: This is kernel package version 13.014. restore_upstream_debianization test ! -f scripts/package/builddeb.kpkg-dist || mv -f scripts/package/builddeb.kpkg-dist scripts/package/builddeb test ! -f scripts/package/Makefile.kpkg-dist || mv -f scripts/package/Makefile.kpkg-dist scripts/package/Makefile /usr/bin/make -j1 EXTRAVERSION=-rc7-43218a1 ARCH=x86_64 \ bzImage After change: This is kernel package version 13.014. restore_upstream_debianization test ! -f scripts/package/builddeb.kpkg-dist || mv -f scripts/package/builddeb.kpkg-dist scripts/package/builddeb test ! -f scripts/package/Makefile.kpkg-dist || mv -f scripts/package/Makefile.kpkg-dist scripts/package/Makefile test ! -f scripts/package/Makefile.kpkg-dist || mv -f scripts/package/Makefile.kpkg-dist scripts/package/Makefile /usr/bin/make -j8 EXTRAVERSION=-rc7-43218a1 ARCH=x86_64 \ bzImage Chris