commit d26a2e6e4b6def50ff09b42dc1340895f4ec234f
parent 67af4cf8ab2d9d8f528105333732060b090898d1
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date: Sun, 11 Jul 2021 00:50:10 +0100
Fix badly quoted string which led to infinite recursion
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -2,7 +2,7 @@
all: doc/pdf/phc-thesis.pdf
doc/pdf/phc-thesis.pdf: from-dissertation-tobin-hochstadt/*.scrbl scribblings/*.scrbl scribblings/*.rkt
- sed -i -e 's|PLACEHOLDER|$$(which pdflatex)|' pdflatex-wrapper/pdflatex
+ sed -i -e "s|PLACEHOLDER|$$(which pdflatex)|" pdflatex-wrapper/pdflatex
tail -F /tmp/logg & PATH="$$PWD/pdflatex-wrapper:$$PATH" raco setup --doc-pdf doc/pdf/ --pkgs phc-thesis | tee pdf.log 2>&1 || (cat pdf.log && echo "=== plain ===" && cat /tmp/ltx/*.tex && echo "=== base64 ===" && base64 /tmp/ltx/*.tex && echo "=== end ===" && exit 1)
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dFastWebView=true -sOutputFile=doc/pdf/phc-thesis-linearized.pdf doc/pdf/phc-thesis.pdf
mv doc/pdf/phc-thesis-linearized.pdf doc/pdf/phc-thesis.pdf