diff options
-rw-r--r-- | meta/conf/bitbake.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index d35a6f64d9..14b0764f22 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -901,3 +901,9 @@ BB_SIGNATURE_EXCLUDE_FLAGS ?= "doc deps depends \ | |||
901 | 901 | ||
902 | MLPREFIX ??= "" | 902 | MLPREFIX ??= "" |
903 | MULTILIB_VARIANTS ??= "" | 903 | MULTILIB_VARIANTS ??= "" |
904 | |||
905 | # Older versions of bitbake (< 1.42) don't set BB_UNIHASH. For compatibility with these | ||
906 | # versions, set BB_UNIHASH equivalent to BB_TASKHASH if unspecified, which is | ||
907 | # what it would be anyway if the signature generator (e.g. OEEquivHash) doesn't | ||
908 | # support unihashes. | ||
909 | BB_UNIHASH ?= "${BB_TASKHASH}" | ||