[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: `automake` error
From: |
Patrice Dumas |
Subject: |
Re: `automake` error |
Date: |
Mon, 14 Feb 2022 14:39:24 +0100 |
On Mon, Feb 14, 2022 at 12:27:53PM +0000, Gavin Smith wrote:
> > 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
Unfortunately, I think that it is incorrect. Indeed, we want the file
to be distributed for the users who cannot regenerate it, in case they
do not have the Pod::Simple::PullParser perl module...
--
Pat
Re: `automake` error, Patrice Dumas, 2022/02/14