From 2a54d80ac2933f4793702b25e7274146397ed507 Mon Sep 17 00:00:00 2001
From: Florian Schmaus <flow@cs.fau.de>
Date: Thu, 24 Mar 2022 13:50:30 +0100
Subject: [PATCH] [benchmark-runner] Use latexmk instead of rubber (for now)

Use latexmk instead of rubber to build the .tex files. Not all systems
have a recent enough rubber version that has the "-m lualatex" option.
---
 .../main/src/de/fau/cs/mazstab/postprocess/PgfPlots.scala       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/benchmark-runner/main/src/de/fau/cs/mazstab/postprocess/PgfPlots.scala b/benchmark-runner/main/src/de/fau/cs/mazstab/postprocess/PgfPlots.scala
index d815492..fd993fe 100644
--- a/benchmark-runner/main/src/de/fau/cs/mazstab/postprocess/PgfPlots.scala
+++ b/benchmark-runner/main/src/de/fau/cs/mazstab/postprocess/PgfPlots.scala
@@ -53,7 +53,7 @@ PLOTS_PDF := $(PLOTS_TEX:.tex=.pdf)
 all: $(PLOTS_PDF)
 
 %.pdf: %.tex
-	rubber -m lualatex $<
+	latexmk -lualatex $<
 
 NPROC := $(shell nproc)
 JOBS := $(shell echo $$(( $(NPROC) + 6)))
-- 
GitLab