From: Fred Drake Date: Wed, 7 Oct 1998 16:41:40 +0000 (+0000) Subject: If --debug was used, don't delete the temporary .perl file used to X-Git-Tag: v1.5.2a2~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b0b1900198ee8e65f7164533bcf8ab9498e426e8;p=python If --debug was used, don't delete the temporary .perl file used to pass options to latex2html. --- 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