diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-19 12:29:19 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-19 12:29:19 +0100 |
commit | 83c21044f5cb711e9bb9bd0334f0137ca5bf87ad (patch) | |
tree | 306df0e76c4d3da80ec0b1fe507c2848295b4c1c | |
parent | 54790be41bf217818941827cebc3f9f284d3253e (diff) | |
download | hurrycurry-83c21044f5cb711e9bb9bd0334f0137ca5bf87ad.tar hurrycurry-83c21044f5cb711e9bb9bd0334f0137ca5bf87ad.tar.bz2 hurrycurry-83c21044f5cb711e9bb9bd0334f0137ca5bf87ad.tar.zst |
fix build error in test-client makefile
-rw-r--r-- | test-client/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-client/makefile b/test-client/makefile index fd007720..4836b309 100644 --- a/test-client/makefile +++ b/test-client/makefile @@ -28,6 +28,7 @@ LT = ../target/release/localetool $(LT): $(shell find ../locale/tools -type f) { cd ..; cargo $(CARGOFLAGS) build --release --bin localetool; } -locale/%.json: $(LT) ../locale/%.ini ../book/locale/%.ini ../locale/en.ini ../book/locale/en.ini +# include ../book/locale/%.ini when it works again +locale/%.json: $(LT) ../locale/%.ini ../locale/en.ini ../book/locale/en.ini @mkdir -p locale $(LT) export-json $@ $(wordlist 2,99,$(^)) |