0004-Use-SHELL-rather-than-bin-sh.patch 691 B

123456789101112131415161718192021222324252627
  1. From f36f12e77798223ee7ee882c0d09e0e63db11454 Mon Sep 17 00:00:00 2001
  2. From: Colin Watson <cjwatson@debian.org>
  3. Date: Sun, 1 Mar 2020 12:14:07 +0000
  4. Subject: [PATCH 4/4] Use @SHELL rather than /bin/sh
  5. /bin/sh might not exist.
  6. ---
  7. gettext-runtime/po/Makefile.in.in | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/gettext-runtime/po/Makefile.in.in b/gettext-runtime/po/Makefile.in.in
  10. index f3ef54c39..285a55a9d 100644
  11. --- a/gettext-runtime/po/Makefile.in.in
  12. +++ b/gettext-runtime/po/Makefile.in.in
  13. @@ -16,7 +16,7 @@ VERSION = @VERSION@
  14. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  15. SED = @SED@
  16. -SHELL = /bin/sh
  17. +SHELL = @SHELL@
  18. @SET_MAKE@
  19. srcdir = @srcdir@
  20. --
  21. 2.17.1