+2009-05-21 guidod <guidod@gmx.de>
+
+ * docs/Makefile.am: make install-docs install-man3 rules so that
+ a failing "ar x" (on OpenBSD/vax) will not kill the whole
+ configure / make / make install cycle. However it simply
+ means that there will be no manpages on such platforms.
+ May be OpenBSD/vax has a "gar" (gnu ar) installed somewhere?
+ * closes Patches item #2716806, was opened at 2009-03-27 13:01
+
2009-05-21 guidod <guidod@gmx.de>
* zzip/fetch.h: ensure that either direct-bswap or direc-deref is only used
on platforms that do not require aligned memory access. The
$(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/man
@ echo ar x htmpages.ar '>>>' $(DESTDIR)$(pkgdocdir)/man/ \
; test -f htmpages.ar || cd "$srcdir" ; P=`pwd` \
- ; cd $(DESTDIR)$(pkgdocdir)/man && ar x $$P/htmpages.ar
+ ; cd $(DESTDIR)$(pkgdocdir)/man && ar x $$P/htmpages.ar \
+ ; true
install-doc : install-docs $(PACKAGE)-doc.omf
$(mkinstalldirs) $(DESTDIR)$(pkgomfdir)
install-man3 : manpages.ar
$(mkinstalldirs) $(DESTDIR)$(mandir)/man3
P=`pwd` ; cd $(DESTDIR)$(mandir)/man3 \
- && ar x $$P/manpages.ar
+ && ar x $$P/manpages.ar \
+ ; true
unpack : manpages.ar htmpages.ar
(rm -rf _htm && mkdir _htm && cd _htm && ar x ../htmpages.ar)