diff options
author | midipix <writeonce@midipix.org> | 2020-01-04 14:25:15 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-04 14:27:42 +0000 |
commit | 0a703a34da1dcb772915bbbc1ea720a95fa19784 (patch) | |
tree | da3874c228905c071dc0905ad82bc31a7a8fd308 /sofort/ccenv | |
parent | b4c595843f2a2a509f2e237cd69fc33764fe39c7 (diff) | |
download | bcparser-0a703a34da1dcb772915bbbc1ea720a95fa19784.tar.bz2 bcparser-0a703a34da1dcb772915bbbc1ea720a95fa19784.tar.xz |
build system: ccenv_{set_cc|dso_verify}(): support deferred command expansion.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index ef7a957..7903b26 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -429,7 +429,7 @@ ccenv_set_cc() ccenv_cmd="$ccenv_cc --target=$ccenv_host -E -xc -" if [ -z "$mb_user_cc" ]; then - $ccenv_cmd < /dev/null > /dev/null \ + $(printf %s "$ccenv_cmd") < /dev/null > /dev/null \ 2>"$ccenv_tmp" || true ccenv_errors=$(cat "$ccenv_tmp") @@ -1206,7 +1206,7 @@ ccenv_dso_verify() rm -f a.out - printf '%s' "$ccenv_str" | $ccenv_cmd \ + printf '%s' "$ccenv_str" | $(printf %s "$ccenv_cmd") \ > /dev/null 2>&3 \ || mb_disable_shared=yes |