From 658816ddc9b6c22ddb9de27b82fc15af2a473723 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 10 Apr 2008 09:54:23 +0000 Subject: [PATCH] * Make really sure that we use bash. The line NEED_PROG(shell, bash) actually uses the content of $shell if set, which often points at /bin/sh. --- configure.ac | 2 +- substitute.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 137f4dbf..f12ac0c4 100644 --- a/configure.ac +++ b/configure.ac @@ -124,7 +124,7 @@ fi ]) NEED_PROG(curl, curl) -NEED_PROG(shell, bash) +NEED_PROG(bash, bash) NEED_PROG(patch, patch) AC_PATH_PROG(xmllint, xmllint, false) AC_PATH_PROG(xsltproc, xsltproc, false) diff --git a/substitute.mk b/substitute.mk index bdc9c435..ed60c53a 100644 --- a/substitute.mk +++ b/substitute.mk @@ -9,7 +9,7 @@ -e "s^@libexecdir\@^$(libexecdir)^g" \ -e "s^@storedir\@^$(storedir)^g" \ -e "s^@system\@^$(system)^g" \ - -e "s^@shell\@^$(shell)^g" \ + -e "s^@shell\@^$(bash)^g" \ -e "s^@curl\@^$(curl)^g" \ -e "s^@bzip2\@^$(bzip2_bin)/bzip2^g" \ -e "s^@bunzip2\@^$(bzip2_bin)/bunzip2^g" \