diff options
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index a6e7257..8c5c6b6 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,3 +1,5 @@ +HERE := $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) + # Sample settings, tweak for particular jobs on make command line or # via environment variables. @@ -6,7 +8,7 @@ SOURCE_TRAC_DB := bikeshed.cryptech.is:/home/trac/db/trac.db SOURCE_TRAC_ATTACHMENTS := bikeshed.cryptech.is:/home/trac/files/attachments all: - ./extract.py --source-url ${SOURCE_URL} + ${HERE}/extract.py --source-url ${SOURCE_URL} cd pelican; pelican --output website --settings pelicanconf.py --fatal errors content fetch: |