diff options
author | midipix <writeonce@midipix.org> | 2019-10-17 03:00:22 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-17 03:01:30 +0000 |
commit | 749dc9cf171cfb852ee45e75ca99d40cee6423a2 (patch) | |
tree | 3169eba005f08a68834d8b9d8f6a076e4d1194a8 /sofort/ccenv | |
parent | c4c457703962850f1683f6514d8fa99c19d9b093 (diff) | |
download | sbpython2-749dc9cf171cfb852ee45e75ca99d40cee6423a2.tar.bz2 sbpython2-749dc9cf171cfb852ee45e75ca99d40cee6423a2.tar.xz |
build system: ccenv.sh: accommodate pattern caveats of old ash(1).
Diffstat (limited to 'sofort/ccenv')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index e56b452..3295bc4 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -53,12 +53,15 @@ ccenv_find_tool() if [ -z "$ccenv_prefixes" ]; then for ccenv_tool in $ccenv_candidates; do if [ -z ${@:-} ]; then - command -v "$ccenv_tool" > /dev/null && \ + if command -v "$ccenv_tool" > /dev/null; then return 0 + fi else - command -v "$ccenv_tool" > /dev/null && \ - "$ccenv_tool" $@ > /dev/null 2>&1 && \ + if command -v "$ccenv_tool" > /dev/null; then + if "$ccenv_tool" $@ > /dev/null 2>&1; then return 0 + fi + fi fi done @@ -70,12 +73,17 @@ ccenv_find_tool() for ccenv_prefix in $ccenv_prefixes; do for ccenv_candidate in $ccenv_candidates; do ccenv_tool="$ccenv_prefix$ccenv_candidate" - command -v "$ccenv_tool" > /dev/null && return 0 + + if command -v "$ccenv_tool" > /dev/null; then + return 0 + fi done done for ccenv_tool in $ccenv_candidates; do - command -v "$ccenv_tool" > /dev/null && return 0 + if command -v "$ccenv_tool" > /dev/null; then + return 0 + fi done ccenv_tool=false |