bug#23599: Including search directories for pdf and dvi

2022-01-22 Thread Mike Frysinger
On 22 Jan 2022 14:43, Karl Berry wrote: > TEXI2DVI = texi2dvi -I libc -I libm > > Couldn't it be set in each directory individually? there is no subdir makefile. newlib/Makefile: TEXI2DVI = ...common setting... include libc/local.mk include libm/local.mk libc/local.mk: info_TEXINFOS += %D%/l

bug#16714: make check failures

2022-01-22 Thread Karl Berry
ACLOCAL=aclocal make check I guess our internal make check initialization should unset ACLOCAL if it's set? Maybe with a warning, since it might be expected. Is something more needed? --thanks, karl.

bug#31728: [PATCH] dmalloc: mark macro as obsolete

2022-01-22 Thread Karl Berry
Sorry, I still disagree with "deprecating" AM_WITH_DMALLOC (or anything else). My wish would be to add some strong wording in the manual about how it doesn't do anything especially useful, new code shouldn't use it, etc., and let it go at that. I don't argue that AM_WITH_DMALLOC is useful. But si

bug#23599: Including search directories for pdf and dvi

2022-01-22 Thread Karl Berry
TEXI2DVI = texi2dvi -I libc -I libm Couldn't it be set in each directory individually? But anyway, agreed it is not the best approach, so never mind. TEXI2DVI = texi2dvi -e Just for the record: -E, not -e. * provide AM_TEXI2FLAGS to apply to both texi2dvi & texi2pdf calls Good idea

bug#23599: Including search directories for pdf and dvi

2022-01-22 Thread Mike Frysinger
On 21 Jan 2022 19:33, Karl Berry wrote: > perhaps an easy way out of this ... if we just add -E > to the texi2dvi call, it forces makeinfo (and its flags) to be used. > > Using -E is not desirable nowadays, it has myriad possibilities for > affecting the output in bad/unpredictable ways. >