diff options
author | Douglas Royds <douglas.royds@taitradio.com> | 2018-11-05 18:39:41 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-07 23:08:54 +0000 |
commit | 87b140abdb071e35cc0c58a60f5e905446192e24 (patch) | |
tree | a072aa3635aa91b23b9a3177f2f5c20bc6a2754e /meta | |
parent | c67e7d1eb3d26d04bfe426d93f56a8b3a85dae93 (diff) | |
download | poky-87b140abdb071e35cc0c58a60f5e905446192e24.tar.gz |
reproducible_build: update do_deploy_source_date_epoch commment
Once the value of SOURCE_DATE_EPOCH is determined, it is stored in the recipe's SDE_FILE.
If none of the existing mechanisms are suitable, replace the do_deploy_source_date_epoch task
with recipe-specific functionality to write the appropriate SOURCE_DATE_EPOCH into the SDE_FILE.
(From OE-Core rev: e7b891b76954c784f5a93bd0a1c91315673ce40d)
Signed-off-by: Douglas Royds <douglas.royds@taitradio.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/reproducible_build.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass index 4f3680a376..0eb696ac78 100644 --- a/meta/classes/reproducible_build.bbclass +++ b/meta/classes/reproducible_build.bbclass | |||
@@ -24,7 +24,10 @@ | |||
24 | # | 24 | # |
25 | # 4. If the above steps fail, use the modification time of the youngest file in the source tree. | 25 | # 4. If the above steps fail, use the modification time of the youngest file in the source tree. |
26 | # | 26 | # |
27 | # Once the value of SOURCE_DATE_EPOCH is determined, it is stored in the recipe's ${SDE_FILE}. | 27 | # Once the value of SOURCE_DATE_EPOCH is determined, it is stored in the recipe's SDE_FILE. |
28 | # If none of these mechanisms are suitable, replace the do_deploy_source_date_epoch task | ||
29 | # with recipe-specific functionality to write the appropriate SOURCE_DATE_EPOCH into the SDE_FILE. | ||
30 | # | ||
28 | # If this file is found by other tasks, the value is exported in the SOURCE_DATE_EPOCH variable. | 31 | # If this file is found by other tasks, the value is exported in the SOURCE_DATE_EPOCH variable. |
29 | # SOURCE_DATE_EPOCH is set for all tasks that might use it (do_configure, do_compile, do_package, ...) | 32 | # SOURCE_DATE_EPOCH is set for all tasks that might use it (do_configure, do_compile, do_package, ...) |
30 | 33 | ||