diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 05:56:07 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:04:06 +0000 |
commit | 3da3ba4e79900968e61a34e84ab79f8c683469cf (patch) | |
tree | d9065949e5c049f3c1447235f18006a4f4aa2c5f | |
parent | 6c021734932c1b8b9c4b85958f6c0e1fdab87028 (diff) | |
download | sltdl-3da3ba4e79900968e61a34e84ab79f8c683469cf.tar.bz2 sltdl-3da3ba4e79900968e61a34e84ab79f8c683469cf.tar.xz |
build system: ccenv: ccenv_find_tool(): further accommodate legacy shells.
-rw-r--r-- | sofort/ccenv/ccenv.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index a376eb7..b8a9219 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -122,7 +122,9 @@ ccenv_find_tool() { if [ -z "$ccenv_prefixes" ]; then for ccenv_candidate in $(printf '%s' "$ccenv_candidates"); do - if [ -z ${@:-} ]; then + ccenv_cmd_args="${@:-}" + + if [ -z "$ccenv_cmd_args" ]; then if command -v "$ccenv_candidate" > /dev/null; then ccenv_tool="$ccenv_candidate" return 0 |