>From 69f5bbcc3369ee94a91458178f0660a16c73732b Mon Sep 17 00:00:00 2001 From: Laine Gholson Date: Mon, 24 Oct 2016 20:48:18 -0500 Subject: [PATCH] configure: fix ctrl-c --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 707eb12..13afa22 100755 --- a/configure +++ b/configure @@ -214,7 +214,7 @@ tmpc="./conf$$-$PPID-$i.c" test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc" done set +C -trap 'rm "$tmpc"' EXIT INT QUIT TERM HUP +trap 'rm -f "$tmpc"; exit 1' EXIT INT QUIT TERM HUP # # Check whether we are cross-compiling, and set a default -- 2.10.1