Commit fbcd7ed25527 ("Stop using 'which' command in build scripts") broke utilities/parallel-latex-regress.sh due to the missing definition of WHICH in epstopdf-rule.mk and a2ping-rule.mk. Resolve this by adding "WHICH=which" to the option list passed to the reference Makefile. Note: "which" should be the command for reference builds. Fixes: Commit fbcd7ed25527 ("Stop using 'which' command in build scripts") Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> --- utilities/parallel-latex-regress.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/parallel-latex-regress.sh b/utilities/parallel-latex-regress.sh index 9bc6f8600f22..2e8904ce3b03 100755 --- a/utilities/parallel-latex-regress.sh +++ b/utilities/parallel-latex-regress.sh @@ -9,7 +9,7 @@ TARGETS=${TARGETS:-2c 1c eb} JOBS=${JOBS:-4} TMP=${TMP:-/tmp} -REFMAKE=${REFMAKE:-make -f Makefile.2022.01.25} +REFMAKE=${REFMAKE:-make -f Makefile.2022.01.25 WHICH=which} export LATEX_OPT=-synctex=1 copy_synctex_db () { -- 2.25.1