[Buildroot] [PATCH] package/cryptsetup: fix host building trying to call asciidoctor

Giulio Benetti giulio.benetti at benettiengineering.com
Sat Aug 6 15:46:10 UTC 2022


While bumping version I've fixed build failure due to missing host
asciidoctor by passing --disable-asciidoc to CRYPTSETUP_CONF_OPTS but that
is missing in HOST_CRYPTSETUP_CONF_OPTS and this leads the same build
failure of target building. So let's fix it by adding --disable-asciidoc
to host HOST_CRYPTSETUP_CONF_OPTS too.

Fixes:
http://autobuild.buildroot.net/results/0c1/0c1a6a8e59653afaa09303550f74475b4a3898bf/build-end.log

Signed-off-by: Giulio Benetti <giulio.benetti at benettiengineering.com>
---
 package/cryptsetup/cryptsetup.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/cryptsetup/cryptsetup.mk b/package/cryptsetup/cryptsetup.mk
index 01902c3f6a..4a52bb62dd 100644
--- a/package/cryptsetup/cryptsetup.mk
+++ b/package/cryptsetup/cryptsetup.mk
@@ -65,7 +65,8 @@ HOST_CRYPTSETUP_CONF_OPTS = --with-crypto_backend=openssl \
 	--disable-kernel_crypto \
 	--disable-ssh-token \
 	--enable-blkid \
-	--with-tmpfilesdir=no
+	--with-tmpfilesdir=no \
+	--disable-asciidoc
 
 $(eval $(autotools-package))
 $(eval $(host-autotools-package))
-- 
2.34.1




More information about the buildroot mailing list