From dede580ecfa9c5c9350b94557daa1200ab398ab4 Mon Sep 17 00:00:00 2001 From: rhiannon morris Date: Wed, 16 Mar 2022 04:54:57 +0100 Subject: [PATCH] parallel doesn't like an empty list --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8ebbb75..caef201 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,10 @@ TEMPLATEDIR ?= templates STATICEXTS := +STATICS := +# STATICS != parallel find $(POSTSDIR) -name '\*.{}' ::: $(STATICEXTS) + POSTS != find $(POSTSDIR) -name '*.md' -STATICS != parallel find $(POSTSDIR) -name '\*.{}' ::: $(STATICEXTS) OUTPUTPOSTS = \ $(patsubst $(POSTSDIR)/%.md,$(BUILDDIR)/%.html,$(POSTS)) \ $(patsubst $(POSTSDIR)/%,$(BUILDDIR)/%,$(STATICS)) \