diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 05:56:07 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:04:00 +0000 |
commit | 8f00fc8c2cdfee49a5e02810eee405dfabf8a401 (patch) | |
tree | 8661bb38b5807c0c2158c5f0bcb21c866c48106b /sofort/ccenv | |
parent | 4b5ad563ee9374e16ebbba3fe9f40a3b4c63903c (diff) | |
download | ntapi-8f00fc8c2cdfee49a5e02810eee405dfabf8a401.tar.bz2 ntapi-8f00fc8c2cdfee49a5e02810eee405dfabf8a401.tar.xz |
build system: ccenv: ccenv_find_tool(): further accommodate legacy shells.
Diffstat (limited to 'sofort/ccenv')
-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 |