From 135cbf0efefdb82c755694d383be598b84dd6b7d Mon Sep 17 00:00:00 2001 From: Jacob Kroon Date: Mon, 15 Jun 2020 14:22:31 +0200 Subject: bitbake: lib/bb/utils.py: Do not preserve TERM in the environment The value of TERM is leaking into OE-Core postinst-useradd-${PN} scripts, which in turn can optionally be monitored by buildhistory. Prune the value in order to make the OE-Core buildhistory output more deterministic. (Bitbake rev: 0d5cdd0c0d65f2f81c3af0f3767fee86c4142c3a) Signed-off-by: Jacob Kroon Signed-off-by: Richard Purdie --- bitbake/lib/bb/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 5f5767c1da..50032e50c2 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -580,7 +580,6 @@ def preserved_envvars_exported(): 'PATH', 'PWD', 'SHELL', - 'TERM', 'USER', 'LC_ALL', 'BBSERVER', -- cgit v1.2.3-54-g00ecf