]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Trap signal 2 (SIGINT), not signal 3 (SIGQUIT), which means stop
authorDavid MacKenzie <djm@djmnet.org>
Fri, 18 Mar 1994 07:58:56 +0000 (07:58 +0000)
committerDavid MacKenzie <djm@djmnet.org>
Fri, 18 Mar 1994 07:58:56 +0000 (07:58 +0000)
without cleaning up.  From eggert@twinsun.com (Paul Eggert).

autoconf.in
autoconf.sh
autoheader.in
autoheader.sh
bin/autoconf.in
bin/autoheader.in

index 16c2e130931a92f82c65b8aba549544e47252be1..b17d2990123a013bf5103e0c4169251fc7cdbaf0 100644 (file)
@@ -71,14 +71,14 @@ if test -z "$print_version"; then
 
   if test z$infile = z-; then
     infile=/tmp/acin.$$
-    trap 'rm -f $infile' 1 3 15
+    trap 'rm -f $infile' 1 2 15
     cat > $infile
   elif test ! -s "${infile}"; then
     echo "autoconf: ${infile}: No such file or directory" >&2
     exit 1
   fi
 
-  trap 'rm -f $tmpout; exit 1' 1 3 15
+  trap 'rm -f $tmpout; exit 1' 1 2 15
 fi
 
 MACROFILES="${AC_MACRODIR}/acgeneral.m4 ${AC_MACRODIR}/acspecific.m4"
index 16c2e130931a92f82c65b8aba549544e47252be1..b17d2990123a013bf5103e0c4169251fc7cdbaf0 100644 (file)
@@ -71,14 +71,14 @@ if test -z "$print_version"; then
 
   if test z$infile = z-; then
     infile=/tmp/acin.$$
-    trap 'rm -f $infile' 1 3 15
+    trap 'rm -f $infile' 1 2 15
     cat > $infile
   elif test ! -s "${infile}"; then
     echo "autoconf: ${infile}: No such file or directory" >&2
     exit 1
   fi
 
-  trap 'rm -f $tmpout; exit 1' 1 3 15
+  trap 'rm -f $tmpout; exit 1' 1 2 15
 fi
 
 MACROFILES="${AC_MACRODIR}/acgeneral.m4 ${AC_MACRODIR}/acspecific.m4"
index 84c48068db0ff14f1954d62f0d2235369fe5b28a..f969155181f811f872eae206447dfc7311028e74 100644 (file)
@@ -135,7 +135,7 @@ syms="`for sym in $syms; do echo $sym; done | sort | uniq`"
 
 if test $# -eq 0; then
   tmpout=autoh$$
-  trap "rm -f $tmpout; exit 1" 1 3 15
+  trap "rm -f $tmpout; exit 1" 1 2 15
   exec > $tmpout
 fi
 
index 84c48068db0ff14f1954d62f0d2235369fe5b28a..f969155181f811f872eae206447dfc7311028e74 100644 (file)
@@ -135,7 +135,7 @@ syms="`for sym in $syms; do echo $sym; done | sort | uniq`"
 
 if test $# -eq 0; then
   tmpout=autoh$$
-  trap "rm -f $tmpout; exit 1" 1 3 15
+  trap "rm -f $tmpout; exit 1" 1 2 15
   exec > $tmpout
 fi
 
index 16c2e130931a92f82c65b8aba549544e47252be1..b17d2990123a013bf5103e0c4169251fc7cdbaf0 100644 (file)
@@ -71,14 +71,14 @@ if test -z "$print_version"; then
 
   if test z$infile = z-; then
     infile=/tmp/acin.$$
-    trap 'rm -f $infile' 1 3 15
+    trap 'rm -f $infile' 1 2 15
     cat > $infile
   elif test ! -s "${infile}"; then
     echo "autoconf: ${infile}: No such file or directory" >&2
     exit 1
   fi
 
-  trap 'rm -f $tmpout; exit 1' 1 3 15
+  trap 'rm -f $tmpout; exit 1' 1 2 15
 fi
 
 MACROFILES="${AC_MACRODIR}/acgeneral.m4 ${AC_MACRODIR}/acspecific.m4"
index 84c48068db0ff14f1954d62f0d2235369fe5b28a..f969155181f811f872eae206447dfc7311028e74 100644 (file)
@@ -135,7 +135,7 @@ syms="`for sym in $syms; do echo $sym; done | sort | uniq`"
 
 if test $# -eq 0; then
   tmpout=autoh$$
-  trap "rm -f $tmpout; exit 1" 1 3 15
+  trap "rm -f $tmpout; exit 1" 1 2 15
   exec > $tmpout
 fi