diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-07 17:08:39 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:24 +0000 |
| commit | b3a2065d47bda8256815d363aeac2b475532b483 (patch) | |
| tree | 8962fd1fcabef19f715eee599daca7e32a8de347 /meta/classes/base.bbclass | |
| parent | 37357ab9eec74d5ef9d7ef8a4c2f27763107ca47 (diff) | |
| download | poky-b3a2065d47bda8256815d363aeac2b475532b483.tar.gz | |
base: Make do_cleansstate nostamp
We always want the cleansstate task to run so it should be
'nostamp' like the other clean tasks.
(From OE-Core rev: 187190bfe3f589a7d1acaa22fab4607f976635ce)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
| -rw-r--r-- | meta/classes/base.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 82ec0c9b82..8ce9dd4315 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
| @@ -651,8 +651,9 @@ addtask cleansstate after do_clean | |||
| 651 | python do_cleansstate() { | 651 | python do_cleansstate() { |
| 652 | sstate_clean_cachefiles(d) | 652 | sstate_clean_cachefiles(d) |
| 653 | } | 653 | } |
| 654 | |||
| 655 | addtask cleanall after do_cleansstate | 654 | addtask cleanall after do_cleansstate |
| 655 | do_cleansstate[nostamp] = "1" | ||
| 656 | |||
| 656 | python do_cleanall() { | 657 | python do_cleanall() { |
| 657 | src_uri = (d.getVar('SRC_URI', True) or "").split() | 658 | src_uri = (d.getVar('SRC_URI', True) or "").split() |
| 658 | if len(src_uri) == 0: | 659 | if len(src_uri) == 0: |
