diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2013-01-03 11:01:07 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-07 11:09:03 +0000 |
commit | 371fbacff47828cfff99f1152f9e269e27c474da (patch) | |
tree | 758264eec168866b37b015aed454d49671051043 | |
parent | 791d88336fb8312041c30ea744d03d8d150d2b8f (diff) | |
download | openembedded-core-371fbacff47828cfff99f1152f9e269e27c474da.tar.gz openembedded-core-371fbacff47828cfff99f1152f9e269e27c474da.tar.bz2 openembedded-core-371fbacff47828cfff99f1152f9e269e27c474da.zip |
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.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/classes/package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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 |