aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2015-01-29 02:30:03 -0300
committerdequis <dx@dxzone.com.ar>2015-02-22 18:19:21 -0300
commit273949d63272f43ed7f41a2f8fbc71fc5bcd3e21 (patch)
tree8d01701901c1404b78dddd5d12465387c69f6867
parentd5c55acb585f4c53b6e41eaf2677c6c2f725592d (diff)
Don't hard-fail when building docs and dependencies are missing
-rw-r--r--doc/Makefile4
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*
ef='#n135'>135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196