| I see this even with an installed automake. It appears that
| 'texi-vers.am' doesn't have the CONFIGURE_AC transform before being
| inserted into Makefile.in. From automake.in, in &handle_texinfo,
| around line 2277
|
| $output_rules .=
| &file_contents_with_transform
| ('s/\@TEXI\@/' . $info_cursor . '/g; '
| . 's/\@VTI\@/' . $vti . '/g; '
| . 's/\@VTEXI\@/' . $vtexi . '/g;'
| . 's,\@MDDIR\@,' . $conf_pat . ',g;',
| 'texi-vers');
|
| Note the lack of the @CONFIGURE_AC@ transform.
Aaaaaaarg! Thank you so much!
But how come I don't have this failure?
~/src/am % touch **/Makefile.am nostromo 18:07
~/src/am % make nostromo 18:08
cd . && /home/lrde/prof/akim/src/am/automake --amdir=. --gnits Makefile
cd . \
&& CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
creating Makefile
Making all in .
make[1]: Entre dans le répertoire `/mnt/nostromo/home/lrde/prof/akim/src/am'
make[1]: *** Pas de règle pour fabriquer la cible `@CONFIGURE_AC@', nécessaire pour
`stamp-vti'. Arrêt.
make[1]: Quitte le répertoire `/mnt/nostromo/home/lrde/prof/akim/src/am'
make: *** [all-recursive] Erreur 1
Now I have it. Sorry Lars... The test suite did not see anything...
I'm fixing this.