diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-14 12:05:10 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-03-04 17:39:08 +0000 |
commit | d6cc4a0f02616b33776734299b9e1f1f2edf60ad (patch) | |
tree | f06f513858f6bba34ae50a7f34838409ae247e2e /meta | |
parent | d1000e553d2db31331c9c827b8edd8897c9e986f (diff) | |
download | poky-d6cc4a0f02616b33776734299b9e1f1f2edf60ad.tar.gz |
cwautomacros: Ensure version is set deterministically
The makefile injects the current date into the version file. Do this
deterministically with SOURCE_DATE_EPOCH.
(From OE-Core rev: 52658a8df1bf86902a277f4896cf766c8391ad61)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 31f2ad739ea776a1e11b5cef5434df188007c7bf)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb index 65a99fc28d..02b016fdf1 100644 --- a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb +++ b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb | |||
@@ -13,7 +13,7 @@ do_configure() { | |||
13 | } | 13 | } |
14 | 14 | ||
15 | do_install() { | 15 | do_install() { |
16 | oe_runmake CWAUTOMACROSPREFIX=${D}${prefix} install | 16 | oe_runmake LABEL=`date -d @${SOURCE_DATE_EPOCH} +%Y%m%d` CWAUTOMACROSPREFIX=${D}${prefix} install |
17 | 17 | ||
18 | # cleanup buildpaths in autogen.sh | 18 | # cleanup buildpaths in autogen.sh |
19 | sed -i -e 's,${D},,g' ${D}${prefix}/share/cwautomacros/scripts/autogen.sh | 19 | sed -i -e 's,${D},,g' ${D}${prefix}/share/cwautomacros/scripts/autogen.sh |