From 9d680778269e827e4559c7e3bb86727bbe508967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ioan-Cristian=20C=C3=8ERSTEA?= Date: Wed, 15 May 2024 23:29:03 +0300 Subject: [PATCH] Fixed Makefile to allow building EPUB manuals with docker rule --- build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index e10d19760..0eb6a380c 100644 --- a/build/Makefile +++ b/build/Makefile @@ -28,7 +28,7 @@ all: $(TARGETS) # Build with preinstalled docker container; first install it with: # docker pull riscvintl/riscv-docs-base-container-image:latest docker: - cd .. && docker run -it -v `pwd`:/build riscvintl/riscv-docs-base-container-image:latest /bin/sh -c 'cd ./build; make -$(MAKEFLAGS) $(TARGETS_PDF) $(TARGETS_HTML)' + cd .. && docker run -it -v `pwd`:/build riscvintl/riscv-docs-base-container-image:latest /bin/sh -c 'export LANG=C.utf8; cd ./build; make -$(MAKEFLAGS) $(TARGETS)' # Asciidoctor options ASCIIDOCTOR_OPTS := -a compress \