Source: k4dirstat Version: 3.2.0-1 Severity: minor Tags: patch Hi,
it seems like the parallel build is enabled only for the dh_auto_install phase, and not for the whole build. k4dirstat seems to build fine with multiple build jobs when building. Thus, my suggestion is to enable the parallel build (with the --parallel option of dh) to speed up the compilation when requested (see also Policy ยง4.9.1). (An alternative is to bump the debhelper compatibility to >= 10, however that requires checking for other changes due to the compatibility bump.) Thanks, -- Pino
--- a/debian/rules +++ b/debian/rules @@ -1,10 +1,10 @@ #!/usr/bin/make -f %: - dh $@ --with kde + dh $@ --parallel --with kde override_dh_auto_configure: dh_auto_configure --buildsystem=kde -- -DK4DIRSTAT_GIT_VERSION=OFF override_dh_auto_install: - dh_auto_install --buildsystem=kde --parallel + dh_auto_install --buildsystem=kde