From a258f42645f8883482b36c62a8144a8df8dd96b9 Mon Sep 17 00:00:00 2001 From: Simon Duquennoy Date: Fri, 6 Oct 2017 17:17:40 +0200 Subject: [PATCH] Fix Doxygen Travis test --- doc/Makefile | 4 ---- tests/00-doxygen/Makefile | 6 +++--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index 7a03deed7..c4af84ca1 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -28,10 +28,6 @@ docsrc = $(docdirs) $(foreach dir,$(docdirs),${shell find $(dir) -type f $(filet html: @doxygen Doxyfile - @echo "Done, errorlog follows:" - @echo "" - @touch doxygen.log - @cat "doxygen.log" clean: @echo "> Cleaning Documentation" diff --git a/tests/00-doxygen/Makefile b/tests/00-doxygen/Makefile index 86196d6bf..b8d933aee 100644 --- a/tests/00-doxygen/Makefile +++ b/tests/00-doxygen/Makefile @@ -30,14 +30,14 @@ DOCDIR=../../doc all: summary doxygen: - @make -C $(DOCDIR) doxygen.log 2> doxygen.runerr > doxygen.runlog + @make -C $(DOCDIR) 2> doxygen.runerr > doxygen.runlog summary: doxygen @( \ 1> summary; \ if [ -s doxygen.runerr ] ; then \ - echo "doxygen: FAIL ಠ_ಠ\nDoxygen caused some runtime warnings. Please fix these." >> summary; \ - echo "Runtime warnings:" >> summary; \ + echo "doxygen: FAIL ಠ_ಠ\nDoxygen caused some errors. Please fix these." >> summary; \ + echo "Errors:" >> summary; \ cat doxygen.runerr >> summary; \ echo >> summary; \ fi ; \