Hello,
When I do
make maintainer-clean
./configure
make -j8
I get the following errors:
mv: cannot stat 'tmp.element_types': No such file or directory
make[4]: *** [Makefile:5859: stamp.element_types] Error 1
make[4]: Leaving directory '/home/dumas/src/texinfo/tta/C'
make[3]: *** [Makefile:5863: main/element_types.h] Error 2
and same for tmp.css_data/stamp.css_data
Removing the @ from Makefile.am and looking a bit more up in the make
output, I see that the rules are run twice, which leads to a race
condition, with tmp.element_types already being moved by the first run
of the rule:
make[4]: Entering directory '/home/dumas/src/texinfo/tta/C'
rm -f tmp.element_types
make[4]: Entering directory '/home/dumas/src/texinfo/tta/C'
touch tmp.element_types
make[4]: Entering directory '/home/dumas/src/texinfo/tta/C'
rm -f tmp.element_types
/bin/bash '/home/dumas/src/texinfo/tta/build-aux/missing' gawk -v srcdir=./main
-f ./main/element_types.awk \
./main/element_types.txt
touch tmp.element_types
/bin/bash '/home/dumas/src/texinfo/tta/build-aux/missing' gawk -v srcdir=./main
-f ./main/element_types.awk \
./main/element_types.txt
mv -f tmp.element_types stamp.element_types
make[4]: Leaving directory '/home/dumas/src/texinfo/tta/C'
make[4]: Leaving directory '/home/dumas/src/texinfo/tta/C'
mv -f tmp.element_types stamp.element_types
--
Pat