summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-16 16:29:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-16 16:31:01 +0000
commit4dcd9d6ceed7262657a628546160d0dced13f45d (patch)
treeced54a539cc9d4408beb9f89b2164aac10f387fc /meta
parent088642f51b03dd42a69dc1a84ff9235009c22564 (diff)
downloadast2050-yocto-poky-4dcd9d6ceed7262657a628546160d0dced13f45d.zip
ast2050-yocto-poky-4dcd9d6ceed7262657a628546160d0dced13f45d.tar.gz
lib/oe/package_manager: Make empty package directories non-fatal
Its perfectly reasonable to call -c package-index with empty package directories. This ensures the builds don't fail in such cases, resolving autobuilder failures. (From OE-Core rev: 11e2aaf2d751277e3e99ac2acbbeff2b7227be94) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oe/package_manager.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 2faf422..6dc8fbd 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -112,7 +112,8 @@ class RpmIndexer(Indexer):
rpm_dirs_found = True
if not rpm_dirs_found:
- return("There are no packages in %s" % self.deploy_dir)
+ bb.note("There are no packages in %s" % self.deploy_dir)
+ return
nproc = multiprocessing.cpu_count()
pool = bb.utils.multiprocessingpool(nproc)
@@ -156,7 +157,8 @@ class OpkgIndexer(Indexer):
(opkg_index_cmd, pkgs_file, pkgs_file, pkgs_dir))
if len(index_cmds) == 0:
- return("There are no packages in %s!" % self.deploy_dir)
+ bb.note("There are no packages in %s!" % self.deploy_dir)
+ return
nproc = multiprocessing.cpu_count()
pool = bb.utils.multiprocessingpool(nproc)
@@ -197,7 +199,8 @@ class DpkgIndexer(Indexer):
deb_dirs_found = True
if not deb_dirs_found:
- return("There are no packages in %s" % self.deploy_dir)
+ bb.note("There are no packages in %s" % self.deploy_dir)
+ return
nproc = multiprocessing.cpu_count()
pool = bb.utils.multiprocessingpool(nproc)
OpenPOWER on IntegriCloud