From b0b1900198ee8e65f7164533bcf8ab9498e426e8 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 7 Oct 1998 16:41:40 +0000 Subject: [PATCH] If --debug was used, don't delete the temporary .perl file used to pass options to latex2html. --- Doc/tools/mkhowto.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Doc/tools/mkhowto.sh b/Doc/tools/mkhowto.sh index 6fa83b2006..1038954f6a 100755 --- a/Doc/tools/mkhowto.sh +++ b/Doc/tools/mkhowto.sh @@ -376,4 +376,6 @@ for FILE in $@ ; do rm -f $LOGFILE done -rm -f $L2H_AUX_INIT_FILE +if [ ! "$DEBUGGING" ] ; then + rm -f $L2H_AUX_INIT_FILE +fi -- 2.50.1