From ef3c63f73d9275dcb4fecb43761229a800ea68b9 Mon Sep 17 00:00:00 2001 From: Stefan Hoffmann Date: Sat, 20 Sep 2014 14:24:16 +0200 Subject: [PATCH] doc: use `cat` instead of `more` to display errors `more` may cause the travis build to hang --- runtime/doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile index 62eb5f17b0..1d9e34d772 100644 --- a/runtime/doc/Makefile +++ b/runtime/doc/Makefile @@ -323,7 +323,7 @@ manpages: $(MANPAGES) # Awk version of .txt to .html conversion. html: noerrors tags $(HTMLS) - @if test -f errors.log; then more errors.log; fi + @if test -f errors.log; then cat errors.log; fi noerrors: -rm -f errors.log