summaryrefslogtreecommitdiffstats
path: root/meta/classes/buildhistory.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-08-02 13:15:07 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-06 12:39:54 +0100
commit60a8903ab2a8b80661a0bcaefdf9a8a30f23f04d (patch)
treeac4b503191a65661da730b164c3d16f932d87e28 /meta/classes/buildhistory.bbclass
parent2fd2c606f6747145c4923a59ad9aa2b1d63d910f (diff)
downloadpoky-60a8903ab2a8b80661a0bcaefdf9a8a30f23f04d.tar.gz
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 <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/buildhistory.bbclass')
-rw-r--r--meta/classes/buildhistory.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index 36e7fe13be..c5bba25fd5 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -531,6 +531,7 @@ END
531python buildhistory_eventhandler() { 531python buildhistory_eventhandler() {
532 if e.data.getVar('BUILDHISTORY_FEATURES', True).strip(): 532 if e.data.getVar('BUILDHISTORY_FEATURES', True).strip():
533 if e.data.getVar("BUILDHISTORY_COMMIT", True) == "1": 533 if e.data.getVar("BUILDHISTORY_COMMIT", True) == "1":
534 bb.note("Writing buildhistory")
534 bb.build.exec_func("buildhistory_commit", e.data) 535 bb.build.exec_func("buildhistory_commit", e.data)
535} 536}
536 537