diff options
| author | Khem Raj <raj.khem@gmail.com> | 2011-04-22 11:23:20 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-28 10:45:42 +0100 |
| commit | 01102bd2d281e1906b339321091c701904a7cf17 (patch) | |
| tree | 68259d9d7961dd35abf74a7224b0a8e7e4835430 | |
| parent | 0bed0db9db8d11590b3ef482f09d00dbb5aea3f1 (diff) | |
| download | poky-01102bd2d281e1906b339321091c701904a7cf17.tar.gz | |
insane.bbclass: Move code to add function to tasks toward the end
Cosmetic change to make syntax highlighters happy
(From OE-Core rev: 1efeeecc33862e4d8c618e1f118ba60258bc6c64)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes/insane.bbclass | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 22a5086c15..98acf7f5a4 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
| @@ -554,9 +554,6 @@ python do_package_qa () { | |||
| 554 | } | 554 | } |
| 555 | 555 | ||
| 556 | 556 | ||
| 557 | # The Staging Func, to check all staging | ||
| 558 | #addtask qa_staging after do_populate_sysroot before do_build | ||
| 559 | do_populate_sysroot[postfuncs] += "do_qa_staging " | ||
| 560 | python do_qa_staging() { | 557 | python do_qa_staging() { |
| 561 | bb.note("QA checking staging") | 558 | bb.note("QA checking staging") |
| 562 | 559 | ||
| @@ -564,10 +561,6 @@ python do_qa_staging() { | |||
| 564 | bb.fatal("QA staging was broken by the package built above") | 561 | bb.fatal("QA staging was broken by the package built above") |
| 565 | } | 562 | } |
| 566 | 563 | ||
| 567 | # Check broken config.log files, for packages requiring Gettext which don't | ||
| 568 | # have it in DEPENDS and for correct LIC_FILES_CHKSUM | ||
| 569 | #addtask qa_configure after do_configure before do_compile | ||
| 570 | do_configure[postfuncs] += "do_qa_configure " | ||
| 571 | python do_qa_configure() { | 564 | python do_qa_configure() { |
| 572 | configs = [] | 565 | configs = [] |
| 573 | workdir = bb.data.getVar('WORKDIR', d, True) | 566 | workdir = bb.data.getVar('WORKDIR', d, True) |
| @@ -603,3 +596,11 @@ Missing inherit gettext?""" % config) | |||
| 603 | if not package_qa_check_license(workdir, d): | 596 | if not package_qa_check_license(workdir, d): |
| 604 | bb.fatal("Licensing Error: LIC_FILES_CHKSUM does not match, please fix") | 597 | bb.fatal("Licensing Error: LIC_FILES_CHKSUM does not match, please fix") |
| 605 | } | 598 | } |
| 599 | # The Staging Func, to check all staging | ||
| 600 | #addtask qa_staging after do_populate_sysroot before do_build | ||
| 601 | do_populate_sysroot[postfuncs] += "do_qa_staging " | ||
| 602 | |||
| 603 | # Check broken config.log files, for packages requiring Gettext which don't | ||
| 604 | # have it in DEPENDS and for correct LIC_FILES_CHKSUM | ||
| 605 | #addtask qa_configure after do_configure before do_compile | ||
| 606 | do_configure[postfuncs] += "do_qa_configure " | ||
