From 9e9482911e7f8cc893861a4df87657984d8df074 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 12 Jun 2024 18:50:13 +0200 Subject: [PATCH] please.sh pkg_build: switch to regular asciidoctor This patch is a companion of https://github.com/git-for-windows/MINGW-packages/pull/119: Git for Windows will use regular `asciidoctor`, not the AsciiDoctor extensions. Signed-off-by: Johannes Schindelin --- please.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/please.sh b/please.sh index ec7a134a36..3e1ebf3444 100755 --- a/please.sh +++ b/please.sh @@ -432,7 +432,7 @@ require () { } install_git_32bit_prereqs () { - require mingw-w64-i686-asciidoctor-extensions + require mingw-w64-i686-asciidoctor } pkg_build () { @@ -445,7 +445,7 @@ pkg_build () { # Git for Windows' packages are only visible to the SDK of the # matching architecture. However, we want to build Git for both # 32-bit and 64-bit in the 64-bit SDK at the same time, therefore - # we need even the prerequisite asciidoctor-extensions for 32-bit. + # we need even the prerequisite asciidoctor for 32-bit. # Let's just steal it from the 32-bit SDK test mingw-w64-git != $package || test x86_64 != $arch ||