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---
16Upstream-Status: Pending
17
18 configure.ac | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/configure.ac b/configure.ac
22index c2f0760a..93769ef9 100644
23--- a/configure.ac
24+++ b/configure.ac
25@@ -74,7 +74,7 @@ gl_LIBTEXTSTYLE_OPTIONAL([0.20.5])
26 if test $cross_compiling = no; then
27   AM_MISSING_PROG(HELP2MAN, help2man)
28 else
29-  HELP2MAN=:
30+  HELP2MAN=true
31 fi
32
33 dnl recfix is part of the GNU recutils suite, and is used in cfg.mk to
34--
352.30.2
36
37