last-svn-commit-70-g487066b bootstrap: Don't remove the automatically collected temp dir.

--- ChangeLog | 4 ++++ bootstrap | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7b87fce..322b639 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-03-17 Roland Levillain <roland@lrde.epita.fr> + * bootstrap: Don't remove the automatically collected temp dir. + +2010-03-17 Roland Levillain <roland@lrde.epita.fr> + * bootstrap: Regen the list of outputs of the documentation. 2010-03-17 Roland Levillain <roland@lrde.epita.fr> diff --git a/bootstrap b/bootstrap index ac5a455..566a62f 100755 --- a/bootstrap +++ b/bootstrap @@ -134,6 +134,7 @@ require convert 6.3.7 # Check for TeX4ht. htlatex and friends do not have options like # `--version', `-version', `-v', etc. Hence this ad hoc procedure. tempdir=`mktemp -d` +# Set up automatic cleanup. cleanup() { rm -rf "$tempdir"; exit; } trap cleanup 0 1 2 3 6 15 ( @@ -146,8 +147,7 @@ trap cleanup 0 1 2 3 6 15 EOF htlatex >/dev/null 2>&1 test.tex || fatal "TeX4ht is required" ) -rm -rf "$tempdir" -# dvipnh is required by TeX4ht. +# dvipng is required by TeX4ht. require dvipng 1.11 # Tell what's going on. -- 1.5.6.5
participants (1)
-
Roland Levillain