* Slightly evil: compress the log file to prevent TeX output from

retaining a dependency on teTeX.

svn path=/nixpkgs/trunk/; revision=6559
This commit is contained in:
Eelco Dolstra 2006-09-19 12:13:37 +00:00
parent f772de22a1
commit af3721de0a

View File

@ -30,6 +30,7 @@ showError() {
echo
echo "LATEX ERROR (LAST LOG LINES SHOWN):"
tail -n 20 $tmpFile
bzip2 $tmpFile
exit 1
}
@ -115,3 +116,5 @@ printf "%5d undefined citations\n" $(cat $tmpFile | grep -c "Citation.*undefined
printf "%5d pages\n" \
$(cat $tmpFile | grep "Output written.*(.*pages" | sed "s/.*(\([0-9]*\) pages.*/\1/" || true)
echo
bzip2 $tmpFile