From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH] make.sh: SIGKILL and SIGSTOP cannot be trapped Date: Wed, 16 Feb 2022 17:24:41 +0000 Message-ID: <761d02cc-e6cb-d6b4-426f-00ebaa993f83@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0593567007761261967==" List-Id: --===============0593567007761261967== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable There is no sense in instructing "trap" to catch signals it cannot trap whatsoever. Signed-off-by: Peter M=C3=BCller --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 4dd068e4b..c06b4ec38 100755 --- a/make.sh +++ b/make.sh @@ -437,7 +437,7 @@ prepareenv() { fi =20 # Trap on emergency exit - trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP= SIGQUIT + trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGQUIT =20 # Checking if running as root user if [ $(id -u) -ne 0 ]; then --=20 2.34.1 --===============0593567007761261967==--