diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-06 23:34:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-11 23:05:13 +0000 |
commit | b7138f18b616b27ee7c4850f2ee09a76a56415dd (patch) | |
tree | e916230b0cd3161364ca14fbd8836db4c184005f /meta/recipes-extended | |
parent | d2da9d8417334e187fd12096bccc0f51f8bf890c (diff) | |
download | poky-b7138f18b616b27ee7c4850f2ee09a76a56415dd.tar.gz |
iputils: Fix build determinism
The suid/setcap code depends on whether setcap is on the host system or not
with suid as a fallback. Disable this functionality to be deterministic.
(From OE-Core rev: 8b00ec484fb851c301f13145e17707c0167feab1)
(From OE-Core rev: 3997c47dea49d583fd48cb03f83c007f61d2cb35)
(From OE-Core rev: 46f9c48dc11928ace672e9a3dea7c01d29cf3f04)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/iputils/iputils_s20190709.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/iputils/iputils_s20190709.bb b/meta/recipes-extended/iputils/iputils_s20190709.bb index 3f9e9917f0..42260f531e 100644 --- a/meta/recipes-extended/iputils/iputils_s20190709.bb +++ b/meta/recipes-extended/iputils/iputils_s20190709.bb | |||
@@ -32,7 +32,8 @@ PACKAGECONFIG[docs] = "-DBUILD_HTML_MANS=true -DBUILD_MANS=true,-DBUILD_HTML_MAN | |||
32 | 32 | ||
33 | inherit meson update-alternatives | 33 | inherit meson update-alternatives |
34 | 34 | ||
35 | EXTRA_OEMESON += "--prefix=${root_prefix}/" | 35 | # Have to disable setcap/suid as its not deterministic |
36 | EXTRA_OEMESON += "--prefix=${root_prefix}/ -DNO_SETCAP_OR_SUID=true" | ||
36 | 37 | ||
37 | ALTERNATIVE_PRIORITY = "100" | 38 | ALTERNATIVE_PRIORITY = "100" |
38 | 39 | ||