I believe you have some misplaced parenthesis, one of the sections should be ...
dgrmans = \
$(top_builddir)/dgr/doc/dgr2file.1 \
$(top_builddir)/dgr/doc/file2dgr.1 \
$(top_builddir)/dgr/doc/dgr.3
I will test the fixes and share the corrected Makefile.am, ScottB can decide if you fix the tar for 1.0.0 or hold for 1.0.1 to incorporate the fixes
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
At Makefile.am line 847, section 'dgrextra' add
dgr/doc/pod1/dgr2file.pod \
and
dgr/doc/pod1/file2dgr.pod \
In subsequent section 'dgrmans' add
($top_builddir)/dgr/doc/dgr2file.1 \
and
($top_builddir)/dgr/doc/file2dgr.1 \
Also in the dgrmans section,
$(top_builddir)/dgr/doc/%.1: dgr/doc/pod1/%.pod
$(dgrPODM1) $< $@f
should read:
$(top_builddir)/dgr/doc/%.1: dgr/doc/pod1/%.pod
$(dgrPODM1) $< $@
These edits should resolve generation of these man pages correctly.
I believe you have some misplaced parenthesis, one of the sections should be ...
dgrmans = \
$(top_builddir)/dgr/doc/dgr2file.1 \
$(top_builddir)/dgr/doc/file2dgr.1 \
$(top_builddir)/dgr/doc/dgr.3
I will test the fixes and share the corrected Makefile.am, ScottB can decide if you fix the tar for 1.0.0 or hold for 1.0.1 to incorporate the fixes
Solved, closing ticket.