From 9f4d46a13ed4b223866c50e109f5c51488fc6bd9 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Tue, 19 Apr 2022 17:09:24 -0400 Subject: scripts/bootstrap.sh: do not attempt to trap SIGKILL Closes: https://bugs.gentoo.org/839162 Signed-off-by: Mike Gilbert --- scripts/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index a84263ba448e..0c0d6062a789 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -172,7 +172,7 @@ pycmd() { } # TSTP messes ^Z of bootstrap up, so we don't trap it anymore. -trap "cleanup" TERM KILL INT QUIT ABRT +trap "cleanup" TERM INT QUIT ABRT # Bug #50158 (don't use `which` in a bootstrap). if ! type -path portageq &>/dev/null ; then -- cgit v1.2.3-65-gdbad