From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Jackson Subject: [PATCH 1/3] docs, build: Tolerate missing fig2dev Date: Tue, 9 Oct 2012 17:27:37 +0100 Message-ID: <1349800059-18689-2-git-send-email-ian.jackson@eu.citrix.com> References: <1349776105.21847.112.camel@zakaz.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1349776105.21847.112.camel@zakaz.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xensource.com Cc: Ian Jackson List-Id: xen-devel@lists.xenproject.org Signed-off-by: Ian Jackson --- docs/Makefile | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index 8806990..e9f6c20 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -42,7 +42,9 @@ txt: $(DOC_TXT) .PHONY: figs figs: - $(MAKE) -C figs + @set -e ; if which $(FIG2DEV) 1>/dev/null 2>/dev/null; then \ + set -x; $(MAKE) -C figs ; else \ + echo "fig2dev (transfig) not installed; skipping figs."; fi .PHONY: python-dev-docs python-dev-docs: -- 1.7.2.5