Hi, Paul. I realized there was a real regression in the runlatex refactoring patch. Attached is the obvious fix. I hope nobody has been affected by the bug. Please apply. Thanks, Akira --- >From 816c5fb3ae9bf1ad18e622cbee327aca1df66629 Mon Sep 17 00:00:00 2001 From: Akira Yokosawa <akiysw@xxxxxxxxx> Date: Mon, 25 Apr 2016 20:47:31 +0900 Subject: [PATCH] Fix regression in improvement of build scripts In commit 4038e781ed56 ("Improve behavior of build scripts"), I made an obvious error in the dependency of 'perfbook.aux.' This commit fixes it. Signed-off-by: Akira Yokosawa <akiysw@xxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7202334..b909c81 100644 --- a/Makefile +++ b/Makefile @@ -173,7 +173,7 @@ perfbook.pdf: perfbook.bbl $(LATEXSOURCES) $(EPSSOURCES) extraction embedfonts perfbook.bbl: $(BIBSOURCES) perfbook.aux bibtex perfbook -perfbook.aux: $(LATEXSOURCES) $(EPSSOURCES) +perfbook.aux: $(LATEXSOURCES) $(EPSSOURCES) extraction embedfonts sh utilities/runfirstlatex.sh perfbook perfbook-1c.pdf: perfbook-1c.bbl $(LATEXSOURCES) $(EPSSOURCES) extraction embedfonts -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe perfbook" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html