diff options
author | Ross Burton <ross.burton@intel.com> | 2013-08-02 13:15:07 +0100 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-08-05 23:59:54 -0700 |
commit | ccd911ba8887f5c9a72d5178617c2a3ee73264ff (patch) | |
tree | 9316ed68e1e4a810be62a8eaa0e99c4ea52b1bf2 /meta | |
parent | d4a4c764a844a7e61f866af9361f139684037336 (diff) | |
download | openembedded-core-ccd911ba8887f5c9a72d5178617c2a3ee73264ff.tar.gz openembedded-core-ccd911ba8887f5c9a72d5178617c2a3ee73264ff.tar.bz2 openembedded-core-ccd911ba8887f5c9a72d5178617c2a3ee73264ff.zip |
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.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 1 |
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 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) } |