diff options
| author | dequis <dx@dxzone.com.ar> | 2015-01-29 02:30:03 -0300 | 
|---|---|---|
| committer | dequis <dx@dxzone.com.ar> | 2015-02-22 18:19:21 -0300 | 
| commit | 273949d63272f43ed7f41a2f8fbc71fc5bcd3e21 (patch) | |
| tree | 8d01701901c1404b78dddd5d12465387c69f6867 | |
| parent | d5c55acb585f4c53b6e41eaf2677c6c2f725592d (diff) | |
Don't hard-fail when building docs and dependencies are missing
| -rw-r--r-- | doc/Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| 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* | 
