0001-configure.ac-HELP2MAN-replace-by-true-when-cross-com.patch 1011 B

123456789101112131415161718192021222324252627282930313233343536
  1. From a7e29f73dab5f9bd4fc7a2407f1ed2022c4ff109 Mon Sep 17 00:00:00 2001
  2. From: Romain Naour <romain.naour@gmail.com>
  3. Date: Fri, 30 Apr 2021 15:43:59 +0200
  4. Subject: [PATCH] configure.ac: HELP2MAN replace ':' by 'true' when
  5. cross-compiling
  6. Avoid:
  7. /usr/bin/make ./../poke/poke
  8. ../run \
  9. : -p poke --name="The GNU extensible binary editor" \
  10. ./../poke/poke -o ./poke.1
  11. ../run: line 51: exec: :: not found
  12. Signed-off-by: Romain Naour <romain.naour@gmail.com>
  13. [Julien: refreshed the patch to be applied with fuzz factor 0]
  14. Signed-off-by: Julien Olivain <ju.o@free.fr>
  15. ---
  16. configure.ac | 2 +-
  17. 1 file changed, 1 insertion(+), 1 deletion(-)
  18. diff --git a/configure.ac b/configure.ac
  19. index 71b4d86..6487b57 100644
  20. --- a/configure.ac
  21. +++ b/configure.ac
  22. @@ -88,7 +88,7 @@ gl_LIBTEXTSTYLE_OPTIONAL([0.20.5])
  23. if test $cross_compiling = no; then
  24. AM_MISSING_PROG(HELP2MAN, help2man)
  25. else
  26. - HELP2MAN=:
  27. + HELP2MAN=true
  28. fi
  29. dnl The following Automake conditional is used in some Makefile.am files
  30. --
  31. 2.45.2