diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-04-10 09:54:23 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-04-10 09:54:23 +0000 |
commit | 658816ddc9b6c22ddb9de27b82fc15af2a473723 (patch) | |
tree | 2357f56d7e3cf092952c3fbb75bab3a7cdcfe3eb /substitute.mk | |
parent | 72034ab35d5ba8c2b229fe36375a15b2a8b5b68c (diff) |
* 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.
Diffstat (limited to 'substitute.mk')
-rw-r--r-- | substitute.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/substitute.mk b/substitute.mk index bdc9c4350..ed60c53a8 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" \ |