This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via 1dc1c331381ecd8241532c165f8bac88a3abd6b8 (commit) from f0707af1619d8e5a2f44e8a8dc00a602f2020254 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 1dc1c331381ecd8241532c165f8bac88a3abd6b8 Author: Raymond Toy toy.raymond@gmail.com Date: Thu Jan 3 20:18:53 2013 -0800
o Don't delete gif files because some are checked in. (Fix this in a better way.) o Don't infloop when creating cmu-user.pdf by skipping over the version message from rerunfilecheck before checking for Rerun messages.
diff --git a/src/docs/cmu-user/Makefile b/src/docs/cmu-user/Makefile index defc4a5..4a3e345 100644 --- a/src/docs/cmu-user/Makefile +++ b/src/docs/cmu-user/Makefile @@ -62,7 +62,7 @@ all: cmu-user.ps
%.pdf : %.tex $(FILES) $(PDFLATEX) $< - @while ( grep Rerun $*.log > /dev/null ); do \ + @while ( grep -v 'Package: rerunfilecheck' $*.log | grep Rerun > /dev/null ); do \ $(PDFLATEX) $<; \ done if [ "$<" = "cmu-user.tex" ]; then $(MAKE) index; else $(MAKE) index-letter; fi @@ -102,7 +102,7 @@ cmu-user-letter.tex: cmu-user.tex
clean: - rm -f *.log *.bbl *.blg *.ps *.pdf *.aux *.lof *.toc *.gif *.out *.ilg + rm -f *.log *.bbl *.blg *.ps *.pdf *.aux *.lof *.toc *.out *.ilg rm -f *.vdx *.cdx *.tdx *.fdx *.idx *.cnd *.fnd *.tnd *.vnd *.haux rm -f *.html *.hcnd *.htnd *.hvnd *.hfnd *.htoc
-----------------------------------------------------------------------
Summary of changes: src/docs/cmu-user/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive