I've added a new Info manual to my project, and added the requisite Makefile.am
incantations:
info_TEXINFOS = manual.texi
Now when I run make distcheck
, I get an error when verifying that make uninstall
successfully uninstalls all files, because the $(infodir)/dir
file isn't being removed correctly.
ERROR: files left after uninstall:
./share/info/dir
make[1]: *** [distuninstallcheck] Error 1
I searched the Internet, the Automake and Texinfo manuals for a solution, but came up blank. What is the idiomatic way to correct this and get make distcheck
working again?