diff options
-rw-r--r-- | meta/classes/base.bbclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 0605c8a0e3..7dbac018ea 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -937,7 +937,12 @@ do_populate_staging[dirs] = "${STAGING_DIR_TARGET}/${bindir} ${STAGING_DIR_TARGE addtask populate_staging after do_install python do_populate_staging () { - bb.build.exec_func('do_stage', d) + # + # Only run do_stage if its not the empty default above + # + stagefunc = bb.data.getVar('do_stage', d, 1).strip() + if stagefunc != "base_do_stage": + bb.build.exec_func('do_stage', d) } addtask install after do_compile |