diff options
author | Ross Burton <ross.burton@intel.com> | 2017-01-25 16:21:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 14:43:00 +0000 |
commit | 9533e14e6ff8be13b5a3e156b1e738f986c026e8 (patch) | |
tree | 8a2d03a8cb8b7ea3374147dfed6045d87f8c781a /meta/classes/distrodata.bbclass | |
parent | d5b2539213920f1ccc963003bf42988fa80937e2 (diff) | |
download | poky-9533e14e6ff8be13b5a3e156b1e738f986c026e8.tar.gz |
distrodata: add DATETIME to vardepsexclude for do_distro_check.
This task uses DATETIME so add it to vardepsexclude so bitbake doesn't refuse to
execute the task when the time changes between the controller and the worker
calculating the hash.
[ YOCTO #10960 ]
(From OE-Core rev: e6784ef0d56a1b297001bc59c0da3aecebd1c656)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/distrodata.bbclass')
-rw-r--r-- | meta/classes/distrodata.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass index 5b3a3e0f1c..9587ba0daf 100644 --- a/meta/classes/distrodata.bbclass +++ b/meta/classes/distrodata.bbclass | |||
@@ -392,6 +392,7 @@ python distro_check_eventhandler() { | |||
392 | 392 | ||
393 | addtask distro_check | 393 | addtask distro_check |
394 | do_distro_check[nostamp] = "1" | 394 | do_distro_check[nostamp] = "1" |
395 | do_distro_check[vardepsexclude] += "DATETIME" | ||
395 | python do_distro_check() { | 396 | python do_distro_check() { |
396 | """checks if the package is present in other public Linux distros""" | 397 | """checks if the package is present in other public Linux distros""" |
397 | import oe.distro_check as dc | 398 | import oe.distro_check as dc |
@@ -475,5 +476,3 @@ do_checklicenseall[nostamp] = "1" | |||
475 | do_checklicenseall() { | 476 | do_checklicenseall() { |
476 | : | 477 | : |
477 | } | 478 | } |
478 | |||
479 | |||