From 53f48ca221dd5ee65297fdce42ff52aecdc03cde Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 20 Dec 2007 13:16:21 +0000 Subject: Fix some build system error handling. Signed-off-by: Ian Jackson --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/Makefile b/docs/Makefile index bc80193dd0..b412008125 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -44,7 +44,7 @@ html: .PHONY: python-dev-docs python-dev-docs: @mkdir -v -p api/tools/python - @if which $(DOXYGEN) 1>/dev/null 2>/dev/null; then \ + @set -e ; if which $(DOXYGEN) 1>/dev/null 2>/dev/null; then \ echo "Running doxygen to generate Python tools APIs ... "; \ $(DOXYGEN) Doxyfile; \ $(MAKE) -C api/tools/python/latex ; else \ -- cgit v1.2.3