1From 8ba76a5a7ce311f67890199c5595bc1f626495ad Mon Sep 17 00:00:00 2001 2From: Romain Naour <romain.naour@gmail.com> 3Date: Fri, 30 Apr 2021 15:43:59 +0200 4Subject: [PATCH] configure.ac: HELP2MAN replace ':' by 'true' when 5 cross-compiling 6 7Avoid: 8/usr/bin/make ./../poke/poke 9../run \ 10 : -p poke --name="The GNU extensible binary editor" \ 11 ./../poke/poke -o ./poke.1 12../run: line 51: exec: :: not found 13 14Signed-off-by: Romain Naour <romain.naour@gmail.com> 15--- 16 configure.ac | 2 +- 17 1 file changed, 1 insertion(+), 1 deletion(-) 18 19diff --git a/configure.ac b/configure.ac 20index c2f0760a..93769ef9 100644 21--- a/configure.ac 22+++ b/configure.ac 23@@ -74,7 +74,7 @@ gl_LIBTEXTSTYLE_OPTIONAL([0.20.5]) 24 if test $cross_compiling = no; then 25 AM_MISSING_PROG(HELP2MAN, help2man) 26 else 27- HELP2MAN=: 28+ HELP2MAN=true 29 fi 30 31 dnl recfix is part of the GNU recutils suite, and is used in cfg.mk to 32-- 332.30.2 34 35