Skip to content

Commit

Permalink
Don't truncate pdflatex warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
b4n committed Apr 28, 2014
1 parent 86d2e90 commit db995a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Makefile.am
Expand Up @@ -80,7 +80,7 @@ geany-$(VERSION).pdf: geany-$(VERSION).tex
cd "$(srcdir)" && \
$(PDFLATEX) $(PDFLATEX_FLAGS) -interaction=nonstopmode -halt-on-error -file-line-error \
-output-directory="$$absbuilddir" "$$absbuilddir/geany-$(VERSION).tex" | \
{ r=$?; grep -i "^!\|.*:[0-9]*:.*\|warning" >&2; exit $r; })
{ r=$?; grep -iA1 "^!\|.*:[0-9]*:.*\|warning" >&2; exit $r; })

geany-$(VERSION).tex: $(srcdir)/geany.txt
$(AM_V_GEN)$(RST2LATEX) -stg --documentoptions="10pt,a4paper" --output-encoding=utf8 $(srcdir)/geany.txt $@
Expand Down

0 comments on commit db995a3

Please sign in to comment.