From: Ross Burton Date: Fri, 2 Aug 2013 12:15:07 +0000 (+0100) Subject: buildhistory: add a note when committing to buildhistory X-Git-Tag: rev_ivi_2015_02_04~11567 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e10afbbd37593301b1b77654cd4802772da6751;p=scm%2Fbb%2Ftizen-distro.git buildhistory: add a note when committing to buildhistory If there's been a lot of changes the commit to buildhistory can take a significant amount of time, so print a note so there's some indication of progress. (From OE-Core rev: ccd911ba8887f5c9a72d5178617c2a3ee73264ff) Signed-off-by: Ross Burton Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 36e7fe1..c5bba25 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass @@ -531,6 +531,7 @@ END python buildhistory_eventhandler() { if e.data.getVar('BUILDHISTORY_FEATURES', True).strip(): if e.data.getVar("BUILDHISTORY_COMMIT", True) == "1": + bb.note("Writing buildhistory") bb.build.exec_func("buildhistory_commit", e.data) }