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

12345678910111213141516171819202122232425262728293031323334
  1. From 51fb81264323f01a86dd0bdeaf1c7a044a9cb6dc 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. ---
  14. configure.ac | 2 +-
  15. 1 file changed, 1 insertion(+), 1 deletion(-)
  16. diff --git a/configure.ac b/configure.ac
  17. index a1943b57..c633f719 100644
  18. --- a/configure.ac
  19. +++ b/configure.ac
  20. @@ -90,7 +90,7 @@ gl_LIBTEXTSTYLE_OPTIONAL([0.20.5])
  21. if test $cross_compiling = no; then
  22. AM_MISSING_PROG(HELP2MAN, help2man)
  23. else
  24. - HELP2MAN=:
  25. + HELP2MAN=true
  26. fi
  27. dnl recfix is part of the GNU recutils suite, and is used in cfg.mk to
  28. --
  29. 2.31.1