diff options
author | Qing He <qing.he@intel.com> | 2010-11-10 15:57:45 +0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2010-11-14 21:08:22 -0800 |
commit | 85bd3d644a5b8711f5ebee9c71ceaf278a02dbb5 (patch) | |
tree | ee3554f442cb525c2f2a242efd03bdfbcc58acb0 | |
parent | 7f4f40fdec9a5ecc707da98d1412a7d0907346c3 (diff) | |
download | openembedded-core-85bd3d644a5b8711f5ebee9c71ceaf278a02dbb5.tar.gz openembedded-core-85bd3d644a5b8711f5ebee9c71ceaf278a02dbb5.tar.bz2 openembedded-core-85bd3d644a5b8711f5ebee9c71ceaf278a02dbb5.zip |
insane.bbclass: fix qa_configure and qa_staging
fix the typo in `postfuncs' and effectively re-enables
qa_configure and qa_staging
Signed-off-by: Qing He <qing.he@intel.com>
-rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 2696a6fc08..b06d021b1b 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -560,7 +560,7 @@ python do_package_qa () { # The Staging Func, to check all staging #addtask qa_staging after do_populate_sysroot before do_build -do_populate_sysroot[postfunc] += "do_qa_staging" +do_populate_sysroot[postfuncs] += "do_qa_staging " python do_qa_staging() { bb.note("QA checking staging") @@ -571,7 +571,7 @@ python do_qa_staging() { # Check broken config.log files, for packages requiring Gettext which don't # have it in DEPENDS and for correct LIC_FILES_CHKSUM #addtask qa_configure after do_configure before do_compile -do_configure[postfunc] += "do_qa_configure" +do_configure[postfuncs] += "do_qa_configure " python do_qa_configure() { configs = [] workdir = bb.data.getVar('WORKDIR', d, True) |