From eda6531cf03f5cefb13b81709d33c102bf95372e Mon Sep 17 00:00:00 2001 From: Glenn Date: Fri, 5 Jan 2024 23:37:10 +0100 Subject: [PATCH] fix: make sure there is no inconsistency in variable names --- plantuml.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plantuml.mk b/plantuml.mk index 43c5842..dfa646a 100644 --- a/plantuml.mk +++ b/plantuml.mk @@ -40,10 +40,10 @@ $(PLANTUML_DEST_DIR): mkdir -p $(PLANTUML_DEST_DIR) $(PLANTUML_DEST_DIR)/%.uml.png: $(PLANTUML_SRC_DIR)/%.uml | $(PLANTUML_DEST_DIR) - $(PLANTUML_COMMAND) -pipe -tpng < $< > $@ + $(PLANTUML_PLANTUML_COMMAND) -pipe -tpng < $< > $@ $(PLANTUML_DEST_DIR)/%.uml.svg: $(PLANTUML_SRC_DIR)/%.uml | $(PLANTUML_DEST_DIR) - $(PLANTUML_COMMAND) -pipe -tsvg < $< > $@ + $(PLANTUML_PLANTUML_COMMAND) -pipe -tsvg < $< > $@ $(PLANTUML_DEST_DIR)/%.uml.pdf: $(PLANTUML_DEST_DIR)/%.uml.svg | $(PLANTUML_DEST_DIR) $(PLANTUML_RSVGCONVERT_COMMAND) -f ps $< | $(PLANTUML_GHOSTSCRIPT_COMMAND) -sDEVICE=pdfwrite -sOutputFile=$@ -f -