This doesn't build with the current book instructions. It tries to rebuild the manpage, and the script it uses starts with "#!/usr/bin/env[...]", and errors out because /usr/bin/env doesn't yet exist. My solution was to prevent the manpage from being rebuilt by editing the Makefile:
sed 's/^dist_man_MANS/#&/' -i Makefile
However doing this prevents the man page from being installed by "make install" so it will need to be manually copied.
This doesn't build with the current book instructions. It tries to rebuild the manpage, and the script it uses starts with "#!/usr/bin/env[...]", and errors out because /usr/bin/env doesn't yet exist. My solution was to prevent the manpage from being rebuilt by editing the Makefile:
However doing this prevents the man page from being installed by "make install" so it will need to be manually copied.