From 0d5cdd0c0d65f2f81c3af0f3767fee86c4142c3a Mon Sep 17 00:00:00 2001 From: Jacob Kroon Date: Mon, 15 Jun 2020 14:22:31 +0200 Subject: 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. Signed-off-by: Jacob Kroon Signed-off-by: Richard Purdie --- lib/bb/utils.py | 1 - 1 file changed, 1 deletion(-) (limited to 'lib') diff --git a/lib/bb/utils.py b/lib/bb/utils.py index 5f5767c1d..50032e50c 100644 --- a/lib/bb/utils.py +++ b/lib/bb/utils.py @@ -580,7 +580,6 @@ def preserved_envvars_exported(): 'PATH', 'PWD', 'SHELL', - 'TERM', 'USER', 'LC_ALL', 'BBSERVER', -- cgit 1.2.3-korg