diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-25 18:31:09 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-25 18:31:12 +0200 |
commit | b5e59770bbc7883036bbe4c13b0ef4749603f8e4 (patch) | |
tree | 96beb30eb4d035979334cf499bf939e16ce8793e | |
parent | 4c3aada4add404b510f76d73a3dd0da44dbb6e95 (diff) | |
download | hurrycurry-b5e59770bbc7883036bbe4c13b0ef4749603f8e4.tar hurrycurry-b5e59770bbc7883036bbe4c13b0ef4749603f8e4.tar.bz2 hurrycurry-b5e59770bbc7883036bbe4c13b0ef4749603f8e4.tar.zst |
fix book build system
-rw-r--r-- | book/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/GNUmakefile b/book/GNUmakefile index 9661290c..1bfeac51 100644 --- a/book/GNUmakefile +++ b/book/GNUmakefile @@ -27,7 +27,7 @@ out: @mkdir -p out book.json: book.js - DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@~ && cp $@~ $@ + { pushd .. >/dev/null; cargo $(CARGOFLAGS) run --release --bin hurrycurry-tools -- book; popd >/dev/null; } > $@~ && cp $@~ $@ $(wordlist 2,99,$(png_pages)): $(word 1,$(png_pages)) out/book_01.%.png: book.typ book.json locale/%.ini out |