summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-10-20 00:17:44 +0000
committermidipix <writeonce@midipix.org>2019-10-20 00:22:03 +0000
commit1a3ec063fadc33d8e65bed6ef200055fc3182a1d (patch)
tree21f348aa8ca2c472db6346a375d3aae9b17a28d7
parent4a7971d41d6076b0315cd754698a5498dc914e68 (diff)
downloadmdso-1a3ec063fadc33d8e65bed6ef200055fc3182a1d.tar.bz2
mdso-1a3ec063fadc33d8e65bed6ef200055fc3182a1d.tar.xz
build system: ccenv.sh: support shells with private loop iteration variables.
-rw-r--r--sofort/ccenv/ccenv.sh15
1 files changed, 9 insertions, 6 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index d6f48f2..e28a1fb 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -51,14 +51,16 @@ ccenv_comment()
ccenv_find_tool()
{
if [ -z "$ccenv_prefixes" ]; then
- for ccenv_tool in $(printf %s "$ccenv_candidates"); do
+ for ccenv_candidate in $(printf %s "$ccenv_candidates"); do
if [ -z ${@:-} ]; then
- if command -v "$ccenv_tool" > /dev/null; then
+ if command -v "$ccenv_candidate" > /dev/null; then
+ ccenv_tool="$ccenv_candidate"
return 0
fi
else
- if command -v "$ccenv_tool" > /dev/null; then
- if "$ccenv_tool" $@ > /dev/null 2>&1; then
+ if command -v "$ccenv_candidate" > /dev/null; then
+ if "$ccenv_candidate" $@ > /dev/null 2>&1; then
+ ccenv_tool="$ccenv_candidate"
return 0
fi
fi
@@ -80,8 +82,9 @@ ccenv_find_tool()
done
done
- for ccenv_tool in $(printf %s "$ccenv_candidates"); do
- if command -v "$ccenv_tool" > /dev/null; then
+ for ccenv_candidate in $(printf %s "$ccenv_candidates"); do
+ if command -v "$ccenv_candidate" > /dev/null; then
+ ccenv_tool="$ccenv_candidate"
return 0
fi
done