diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-21 10:07:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-23 13:49:11 +0100 |
commit | 4aa4eadecb4e7c4158e9163644b3a2a7bc74c0fb (patch) | |
tree | e822c40a85370bdc8691d33def17dccc673a6928 /meta/classes/reproducible_build.bbclass | |
parent | 568f62214bca3ac6d35eef8d9f4562596fb4c9ab (diff) | |
download | poky-4aa4eadecb4e7c4158e9163644b3a2a7bc74c0fb.tar.gz |
reproducible_build/package_XXX: Ensure SDE task is in dependency chain
(From OE-Core rev: 938e4dfb68a465f61cb754b2cd28d0728616b5a9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/reproducible_build.bbclass')
-rw-r--r-- | meta/classes/reproducible_build.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass index 96bb012243..89f645b858 100644 --- a/meta/classes/reproducible_build.bbclass +++ b/meta/classes/reproducible_build.bbclass | |||
@@ -109,6 +109,8 @@ python create_source_date_epoch_stamp() { | |||
109 | os.rename(tmp_file, epochfile) | 109 | os.rename(tmp_file, epochfile) |
110 | } | 110 | } |
111 | 111 | ||
112 | EPOCHTASK = "do_deploy_source_date_epoch" | ||
113 | |||
112 | # Generate the stamp after do_unpack runs | 114 | # Generate the stamp after do_unpack runs |
113 | do_unpack[postfuncs] += "create_source_date_epoch_stamp" | 115 | do_unpack[postfuncs] += "create_source_date_epoch_stamp" |
114 | 116 | ||