diff options
Diffstat (limited to 'testing/pipexec/dont-require-bash.patch')
-rw-r--r-- | testing/pipexec/dont-require-bash.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/pipexec/dont-require-bash.patch b/testing/pipexec/dont-require-bash.patch new file mode 100644 index 0000000000..035d49cb95 --- /dev/null +++ b/testing/pipexec/dont-require-bash.patch @@ -0,0 +1,23 @@ +diff --git a/Makefile.in b/Makefile.in +index 1a10a34..faa57ee 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -1354,7 +1354,7 @@ uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIBRARIES + + @USE_VERSION_FILE_FALSE@.FORCE: src/app_version.c + @USE_VERSION_FILE_FALSE@src/app_version.c: +-@USE_VERSION_FILE_FALSE@ bash $(top_srcdir)/build/version-gen.sh ${top_srcdir} ++@USE_VERSION_FILE_FALSE@ sh $(top_srcdir)/build/version-gen.sh ${top_srcdir} + + # Local Variables: + # mode: makefile +diff --git a/version.sh b/version.sh +index 9f5ae2a..1150c91 100755 +--- a/version.sh ++++ b/version.sh +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + set -e + + TOPSRCDIR="" |