From 659939d6323d7feb1cf038aec4ce3f4db9754520 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 22 Aug 2023 02:17:26 -0500 Subject: [PATCH] Fix so images build after `make clean` --- make_files/make_docs.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make_files/make_docs.mk b/make_files/make_docs.mk index e4b7514..97f3867 100644 --- a/make_files/make_docs.mk +++ b/make_files/make_docs.mk @@ -393,13 +393,13 @@ $(LATEX_EPILOG): $(SOURCE_EPILOG) $(DOC_DEPENDS) # Construct *.svg files $(SVG_FILES): $$(patsubst %.svg,%.svg,\ $$(subst $(IMAGES_BASEDIR),$(INKSCAPE_BASEDIR),$$@))\ - $(DOC_DEPENDS) + $(DOC_DEPENDS) $(IMAGES_BASEDIR) inkscape --export-filename=$@ --export-plain-svg $< # Construct *.png files $(PNG_FILES): $$(patsubst %.png,%.svg,\ $$(subst $(IMAGES_BASEDIR),$(INKSCAPE_BASEDIR),$$@))\ - $(DOC_DEPENDS) + $(DOC_DEPENDS) $(IMAGES_BASEDIR) inkscape --export-filename=$@ $< # Build all the RST for html output -- 2.34.1