From 273949d63272f43ed7f41a2f8fbc71fc5bcd3e21 Mon Sep 17 00:00:00 2001 From: dequis Date: Thu, 29 Jan 2015 02:30:03 -0300 Subject: Don't hard-fail when building docs and dependencies are missing --- doc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/Makefile b/doc/Makefile index 69471d32..1e32dbe4 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -5,13 +5,13 @@ endif all: # Only build the docs if this is a git tree - test ! '(' -d ../.git -o -d ../.bzr ')' || $(MAKE) -C user-guide + -test ! '(' -d ../.git -o -d ../.bzr ')' || $(MAKE) -C user-guide install: mkdir -p $(DESTDIR)$(MANDIR)/man8/ $(DESTDIR)$(MANDIR)/man5/ $(INSTALL) -m 0644 $(_SRCDIR_)bitlbee.8 $(DESTDIR)$(MANDIR)/man8/ $(INSTALL) -m 0644 $(_SRCDIR_)bitlbee.conf.5 $(DESTDIR)$(MANDIR)/man5/ - $(MAKE) -C user-guide $@ + -$(MAKE) -C user-guide $@ uninstall: rm -f $(DESTDIR)$(MANDIR)/man8/bitlbee.8* -- cgit v1.2.3