The delta pod-man-pages-20051015 makes AFS unbuildable on systems lacking the 'pod2man' command (in our case: Solaris 8).

With the attached patch the build works again at least - without man pages.

--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Rainer Toebbicke
European Laboratory for Particle Physics(CERN) - Geneva, Switzerland
Phone: +41 22 767 8985       Fax: +41 22 767 7155
--- openafs/doc/man-pages/Makefile.in.o141      2005-10-15 17:04:27.000000000 
+0200
+++ openafs/doc/man-pages/Makefile.in   2005-11-09 14:37:16.000000000 +0100
@@ -172,28 +172,28 @@
 all: $(MAN1) $(MAN8)
 
 %.1: $(srcdir)/pod/%.pod
-       pod2man -c 'AFS Command Reference' -r 'OpenAFS' -s 1 $< $@
+       -pod2man -c 'AFS Command Reference' -r 'OpenAFS' -s 1 $< $@
 
 %.8: $(srcdir)/pod/%.pod
-       pod2man -c 'AFS Command Reference' -r 'OpenAFS' -s 8 $< $@
+       -pod2man -c 'AFS Command Reference' -r 'OpenAFS' -s 8 $< $@
 
 clean:
        rm -f *.1 *.8
 
 dest: $(MAN1) $(MAN8)
        mkdir -p $(DEST)/man/man1 $(DEST)/man/man8
-       set -e; for M in $(MAN1) ; do \
+       -set -e; for M in $(MAN1) ; do \
            $(INSTALL) -c -m 0644 $$M $(DEST)/man/man1/$$M ; \
        done
-       set -e; for M in $(MAN8) ; do \
+       -set -e; for M in $(MAN8) ; do \
            $(INSTALL) -c -m 0644 $$M $(DEST)/man/man8/$$M ; \
        done
 
 install: $(MAN1) $(MAN8)
        mkdir -p $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man8
-       set -e; for M in $(MAN1) ; do \
+       -set -e; for M in $(MAN1) ; do \
            $(INSTALL) -c -m 0644 $$M $(DESTDIR)$(mandir)/man1/$$M ; \
        done
-       set -e; for M in $(MAN8) ; do \
+       -set -e; for M in $(MAN8) ; do \
            $(INSTALL) -c -m 0644 $$M $(DESTDIR)$(mandir)/man8/$$M ; \
        done

Reply via email to