]> andersk Git - openssh.git/commitdiff
- (dtucker) [contrib/findssh.sh] Clean up on interrupt; from
authordtucker <dtucker>
Mon, 13 Dec 2004 07:08:32 +0000 (07:08 +0000)
committerdtucker <dtucker>
Mon, 13 Dec 2004 07:08:32 +0000 (07:08 +0000)
   amarendra.godbole at ge com.

ChangeLog
contrib/findssl.sh

index a970c7bb04b10254b9929c7354d27d46d045188e..f852c76e489571a2d13ea0c549c5b2a5ca1d36c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20041213
+ - (dtucker) [contrib/findssh.sh] Clean up on interrupt; from
+   amarendra.godbole at ge com.
+
 20041211
  - (dtucker) OpenBSD CVS Sync
    - markus@cvs.openbsd.org 2004/12/06 16:00:43
index c01f35a5ccfe5cb96755869de7e11f97da9721d5..a4e8f4c83f6584f96eb0ddf62e7c5dccef985d60 100644 (file)
@@ -1,5 +1,7 @@
 #!/bin/sh
 #
+# $Id$
+#
 # findssl.sh
 #      Search for all instances of OpenSSL headers and libraries
 #      and print their versions.
 #      Written by Darren Tucker (dtucker at zip dot com dot au)
 #      This file is placed in the public domain.
 #
-# $Id$
+#      Release history:
 #      2002-07-27: Initial release.
 #      2002-08-04: Added public domain notice.
 #      2003-06-24: Incorporated readme, set library paths. First cvs version.
+#      2004-12-13: Add traps to cleanup temp files, from Amarendra Godbole.
 #
 # "OpenSSL headers do not match your library" are usually caused by
 # OpenSSH's configure picking up an older version of OpenSSL headers
 CC=gcc
 STATIC=-static
 
+#
+# Cleanup on interrupt
+#
+trap 'rm -f conftest.c' INT HUP TERM
+
 #
 # Set up conftest C source
 #
This page took 0.384765 seconds and 5 git commands to generate.