From cae894c7ba5d36ce4a5d97889ded0019a32427d5 Mon Sep 17 00:00:00 2001 From: Rhiannon Morris Date: Mon, 24 May 2021 12:58:28 +0200 Subject: [PATCH] look through symlink for data dir --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d6139f5..142ce2c 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ MEDH := 1200 MAKEPAGES := $(TMPDIR)/make-pages -YAMLS != find $(DATADIR) -name $(INFONAME) +YAMLS != find -L $(DATADIR) -name $(INFONAME) SCRIPTS != find script -name '*.js' STYLES != find style -name '*.css' @@ -73,7 +73,7 @@ $(TMPDIR)/index.mk: $(DATADIR)/index.yaml $(YAMLS) $(MAKEPAGES) NODEPS := mostlyclean clean distclean list-tags GOALS := $(if $(strip $(MAKECMDGOALS)),$(strip $(MAKECMDGOALS)),all) ifneq ($(filter-out $(NODEPS),$(GOALS)),) --include $(TMPDIR)/index.mk +include $(TMPDIR)/index.mk endif