Re: [Groff] automake for man-pages

2015-08-14 Thread Keith Marshall
On 13/08/15 22:19, Bertrand Garrigues wrote: > ... The only thing is that after the 'else' the 3 lines > > man1_MANS += $(PREFIXMAN1) > man1_MANS += $(PREFIXMAN5) > man1_MANS += $(PREFIXMAN7) > > are incorrect, it should be of course > > man1_MANS += $(PREFIXMAN1) > man5_MANS += $(P

Re: [Groff] automake for man-pages

2015-08-14 Thread Ralph Corderoy
Hi Keith, > > man1_MANS += $(PREFIXMAN1) > > man1_MANS += $(PREFIXMAN5) > > man1_MANS += $(PREFIXMAN7) > > > > are incorrect, it should be of course > > > > man1_MANS += $(PREFIXMAN1) > > man5_MANS += $(PREFIXMAN5) > > man7_MANS += $(PREFIXMAN7) > > Surely a typo here? Those two

Re: [Groff] automake for man-pages

2015-08-14 Thread Keith Marshall
On 14/08/15 14:56, Ralph Corderoy wrote: >>> man1_MANS += $(PREFIXMAN1) >>> man1_MANS += $(PREFIXMAN5) >>> man1_MANS += $(PREFIXMAN7) >>> >>> are incorrect, it should be of course >>> >>> man1_MANS += $(PREFIXMAN1) >>> man5_MANS += $(PREFIXMAN5) >>> man7_MANS += $(PREFIXMAN7) >> >> S