> After saying `./autogen.sh` I see > > ``` > automake: error: cannot open < doc/tp_api/tp_api.texi: No such file or > directory > ```
I committed a fix for this but don't know if it's correct: diff --git a/doc/tp_api/Makefile.am b/doc/tp_api/Makefile.am index bd36d99372..7629b0122b 100644 --- a/doc/tp_api/Makefile.am +++ b/doc/tp_api/Makefile.am @@ -31,7 +31,7 @@ AM_MAKEINFOHTMLFLAGS = --split=chapter # since the tp_api 'manual' is referred to extensively in the # customization_api, we setup the build targets. -info_TEXINFOS = tp_api.texi +nodist_info_TEXINFOS = tp_api.texi TEXINFO_TEX = ../texinfo.tex