aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2019-02-01 08:35:20 -0400
committerDavid Bremner <david@tethera.net>2019-02-01 08:35:20 -0400
commit87eb477ba546c47083f678bb7fa3d433cb591090 (patch)
tree64b93c83ece1fcc36958593bb09c1f96114c31ca /configure
parent6784d5bc60f850a93e6101e60b03bf6ab81020cc (diff)
parent32fb3c420a408ccfd20301f0c527c4259bf721cc (diff)
Merge tag '0.28.1'
notmuch 0.28.1 release
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 3ae26241..a6f5dfa2 100755
--- a/configure
+++ b/configure
@@ -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... "