package.bbclass: Fixup for using common function

We may as well use the common function for this rather than
duplicating the code.

(From OE-Core rev: 20979854c52607212c16e0b01cf610c80d8b524e)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2014-08-21 21:47:50 +01:00
parent be1b198076
commit 9412254f23

View File

@@ -928,13 +928,7 @@ python split_and_strip_files () {
for f in kernmods:
sfiles.append((f, 16, strip))
import multiprocessing
nproc = multiprocessing.cpu_count()
pool = bb.utils.multiprocessingpool(nproc)
processed = list(pool.imap(oe.package.runstrip, sfiles))
pool.close()
pool.join()
oe.utils.multiprocess_exec(sfiles, oe.package.runstrip)
#
# End of strip
@@ -1311,12 +1305,7 @@ python package_do_filedeps() {
for files in chunks(pkgfiles[pkg], 100):
pkglist.append((pkg, files, rpmdeps, pkgdest))
import multiprocessing
nproc = multiprocessing.cpu_count()
pool = bb.utils.multiprocessingpool(nproc)
processed = list(pool.imap(oe.package.filedeprunner, pkglist))
pool.close()
pool.join()
processed = oe.utils.multiprocess_exec( pkglist, oe.package.filedeprunner)
provides_files = {}
requires_files = {}