diff options
Diffstat (limited to 'by-laws/Makefile')
-rw-r--r-- | by-laws/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/by-laws/Makefile b/by-laws/Makefile index f18edbf..e17d0dd 100644 --- a/by-laws/Makefile +++ b/by-laws/Makefile @@ -14,8 +14,7 @@ by-laws-2010.pdf latex_count=5 ;\ latex_log=$$(echo $< | sed 's/.tex/.log/') ;\ pdflatex $< ;\ - while egrep -s 'Rerun (LaTeX|to get cross-references right)' \\\ - $$latex_log && [ $$latex_count -gt 0 ] ;\ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' $$latex_log && [ $$latex_count -gt 0 ] ;\ do echo "Rerunning latex...." ; pdflatex $< ;\ latex_count=`expr $$latex_count - 1`;\ done ;\ |