From faf94a9d6d417f0a9e35c6b8533bb870ea2f486b Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Thu, 3 Jan 2013 11:01:07 -0500 Subject: package.bbclass: Skip testing "packages" a second time. Since the "packages" variable is already tested a few lines above in the same routine: if len(packages) < 1: bb.debug(1, "No packages to build, skipping do_package") return there is no point testing it again, and the error message doesn't even refer to "packages", anyway. (From OE-Core rev: 371fbacff47828cfff99f1152f9e269e27c474da) Signed-off-by: Robert P. J. Day Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/classes/package.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes') diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 34bbc46d2a..b06cca5f57 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -1885,7 +1885,7 @@ python do_package () { dvar = d.getVar('PKGD', True) pn = d.getVar('PN', True) - if not workdir or not outdir or not dest or not dvar or not pn or not packages: + if not workdir or not outdir or not dest or not dvar or not pn: bb.error("WORKDIR, DEPLOY_DIR, D, PN and PKGD all must be defined, unable to package") return -- cgit v1.2.3-54-g00ecf