parallel doesn't like an empty list
This commit is contained in:
parent
256706b285
commit
dede580ecf
1 changed files with 3 additions and 1 deletions
4
Makefile
4
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)) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue