diff options
author | midipix <writeonce@midipix.org> | 2021-06-11 14:57:25 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 10:45:08 +0000 |
commit | 6b189be1ecdae18e9e3baf5143cbbc521421b052 (patch) | |
tree | b3ae09cf74eb302d814a2ee7997c44b9d1182bba /sofort | |
parent | e586d5b93356b069012cc624872cf2c167049bf3 (diff) | |
download | sbmake-6b189be1ecdae18e9e3baf5143cbbc521421b052.tar.bz2 sbmake-6b189be1ecdae18e9e3baf5143cbbc521421b052.tar.xz |
build system: ccenv: ccenv_set_primary_tools(): properly output explicit tools.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index e52f640..e66614a 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -220,12 +220,14 @@ ccenv_set_primary_tools() ccenv_var_prefix='mb_native_' fi + ccenv_tool= ccenv_var_name=$ccenv_var_prefix$__tool ccenv_var_expr='${'$ccenv_var_name':-}' eval ccenv_var_val=$ccenv_var_expr if [ -n "$ccenv_var_val" ]; then eval ccenv_$__tool="$ccenv_var_val" + ccenv_tool="$ccenv_var_val" else ccenv_find_tool eval ccenv_$__tool="$ccenv_tool" |