|
From: | No Wayman |
Subject: | makeinfo does not produce first output file when multiple files passed |
Date: | Thu, 18 Jan 2024 10:52:17 -0500 |
User-agent: | mu4e 1.11.27; emacs 30.0.50 |
makeinfo --version: texi2any (GNU texinfo) 7.1 Run on Arch Linux Reproduction steps: 1. Clone the "emacs-eat" repository: $ cd /tmp/ $ git clone https://codeberg.org/akib/emacs-eat.git2. Within the repository, attempt to build 3 info files from the 3 texi files in the repository:
$ cd ./emacs-eat$ makeinfo fdl.texi -o fdl.info gpl.texi -o gpl.info eat.texi -o eat.info
This results in the last two info files being created (e.g. gpl.info and eat.info in this example). The first file is not created regardless of the order they are passed. Passing a "null" first argument results in all three files being generated:
$ makeinfo /dev/null fdl.texi -o fdl.info gpl.texi -o gpl.info eat.texi -o eat.info
Is this a misunderstanding on my part, or should all three files be generated with the first makeinfo command in the reproduction case?
[Prev in Thread] | Current Thread | [Next in Thread] |