package/cryptsetup: fix host building trying to call asciidoctor

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/0c1a6a8e59653afaa09303550f74475b4a3898bf/

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Giulio Benetti 2022-08-06 17:46:10 +02:00 committed by Thomas Petazzoni
parent cd933d676f
commit 974ca92229

View File

@ -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))