diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-12-10 16:53:19 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:49 +0000 |
commit | 098f63d6727e3b4db0a8906deee52c75f03047fb (patch) | |
tree | a6937b895dc0126fa684695b15e42700f8fb3eb2 /bitbake/lib/bb/fetch | |
parent | 5a92e67b8655d0971c6e3e8233e984ef9ad42997 (diff) | |
download | poky-098f63d6727e3b4db0a8906deee52c75f03047fb.tar.gz |
Rename command events, adjust compareRevisions
- Moved the logic for comparing revisions from cooker into command
- Removed 'Cooker' from the event names
- Renamed the 'ExitCode' event into CommandExit, and changed CommandFailed to
be a subclass of CommandExit
(Bitbake rev: c51ed5d7a9971fad6019dac6c35a71b8a54ab16a)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index 0562d72a23..668b788698 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py | |||
@@ -174,7 +174,7 @@ def fetcher_init(d): | |||
174 | pd.addDomain("BB_URI_HEADREVS") | 174 | pd.addDomain("BB_URI_HEADREVS") |
175 | pd.addDomain("BB_URI_LOCALCOUNT") | 175 | pd.addDomain("BB_URI_LOCALCOUNT") |
176 | 176 | ||
177 | def fetcher_compare_revisons(d): | 177 | def fetcher_compare_revisions(d): |
178 | """ | 178 | """ |
179 | Compare the revisions in the persistant cache with current values and | 179 | Compare the revisions in the persistant cache with current values and |
180 | return true/false on whether they've changed. | 180 | return true/false on whether they've changed. |