diff options
| author | David Bremner <david@tethera.net> | 2019-02-01 08:35:20 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-02-01 08:35:20 -0400 |
| commit | 87eb477ba546c47083f678bb7fa3d433cb591090 (patch) | |
| tree | 64b93c83ece1fcc36958593bb09c1f96114c31ca /configure | |
| parent | 6784d5bc60f850a93e6101e60b03bf6ab81020cc (diff) | |
| parent | 32fb3c420a408ccfd20301f0c527c4259bf721cc (diff) | |
Merge tag '0.28.1'
notmuch 0.28.1 release
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -53,7 +53,7 @@ fi # Set several defaults (optionally specified by the user in # environment variables) -BASH=${BASH:-bash} +BASHCMD=${BASHCMD:-bash} PERL=${PERL:-perl} CC=${CC:-cc} CXX=${CXX:-c++} @@ -560,13 +560,13 @@ else fi printf "Checking for bash... " -if command -v ${BASH} > /dev/null; then +if command -v ${BASHCMD} > /dev/null; then have_bash=1 - bash_absolute=$(command -v ${BASH}) + bash_absolute=$(command -v ${BASHCMD}) printf "Yes (%s).\n" "$bash_absolute" else have_bash=0 - printf "No. (%s not found)\n" "${BASH}" + printf "No. (%s not found)\n" "${BASHCMD}" fi printf "Checking for perl... " |
