[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: `automake` error
From: |
Gavin Smith |
Subject: |
Re: `automake` error |
Date: |
Mon, 14 Feb 2022 12:27:53 +0000 |
> 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
Re: `automake` error, Patrice Dumas, 2022/02/14