1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: XSI:isms in several scripts: numeric signals instead of signal names for trap.
Forwarded: not-done
Bug-Debian: https://bugs.debian.org/256287
Author: David Weinehall <tao@debian.org>
---
contrib/fix-info-dir | 6 +++---
contrib/fixfonts | 2 +-
util/texi2dvi | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
--- texinfo.orig/util/texi2dvi
+++ texinfo/util/texi2dvi
@@ -1745,7 +1745,7 @@
$SED "s,^$orig_pwd/,,;s,^\./,,;s,/,!,g"`
esac
# Remove it at exit if clean mode.
- trap "cleanup" 0 1 2 15
+ trap "cleanup" 0 HUP INT TERM
ensure_dir "$t2ddir"
|