diff options
author | Gustav Eek <gustav.eek@proceranetworks.com> | 2013-03-28 12:20:57 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@proceranetworks.com> | 2013-04-20 09:18:01 +0200 |
commit | 4b2025f39d5816f2a5539c90b126d2f362bf881e (patch) | |
tree | 0aef03dc677fa666a68bf534d41b7bdd4e066899 /by-laws | |
parent | ebf3b7a522ddc1070d7694c6a14e6c5666180b0f (diff) |
Errors in Makefiles corrected
Diffstat (limited to 'by-laws')
-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 ;\ |