diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-01 10:23:09 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-01 10:23:09 +0000 |
commit | dc13a6197f4bcf34ee8db6ba5484ac768b9b206b (patch) | |
tree | 554866097a94d6d150232069c607d6852834f0d9 | |
parent | 724088189e699c67adf949f5baaa8de83483c82c (diff) | |
download | poky-dc13a6197f4bcf34ee8db6ba5484ac768b9b206b.tar.gz |
bitbake/siggen: Fix finalise call arguments
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/siggen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index 066710c3bb..06a48f1765 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
@@ -29,7 +29,7 @@ class SignatureGenerator(object): | |||
29 | def __init__(self, data, dumpsigs): | 29 | def __init__(self, data, dumpsigs): |
30 | return | 30 | return |
31 | 31 | ||
32 | def finalise(self, fn, d): | 32 | def finalise(self, fn, d, varient): |
33 | return | 33 | return |
34 | 34 | ||
35 | class SignatureGeneratorBasic(SignatureGenerator): | 35 | class SignatureGeneratorBasic(SignatureGenerator): |