summaryrefslogtreecommitdiff
path: root/sofort/ccenv
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-04-19 09:01:33 +0000
committermidipix <writeonce@midipix.org>2021-04-19 09:20:40 +0000
commit0ef1029114a169db15d5b2553f8a53e6bac32ede (patch)
treef6fce2964c623eaae058013f1ee251a10dc10f90 /sofort/ccenv
parent6fa5552405e70902f566287a79c319a70ea3e7e5 (diff)
downloadbcparser-0ef1029114a169db15d5b2553f8a53e6bac32ede.tar.bz2
bcparser-0ef1029114a169db15d5b2553f8a53e6bac32ede.tar.xz
build system: ccenv: ccenv_set_cc{_bits}(): handle quotes in $ccenv_cflags.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r--sofort/ccenv/ccenv.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index 9ed5b99..62caa96 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -463,7 +463,7 @@ ccenv_set_cc()
ccenv_errors=
if [ "$ccenv_cfgtype" = 'native' ]; then
- ccenv_host=$($ccenv_cc $(printf '%s' "$ccenv_cflags") -dumpmachine 2>&3)
+ ccenv_host=$(eval $ccenv_cc $(printf '%s' "$ccenv_cflags") -dumpmachine 2>&3)
ccenv_cchost=$ccenv_host
ccenv_tool_epilog "$ccenv_cc"
return 0
@@ -665,7 +665,7 @@ ccenv_set_cc_bits()
"$ccenv_internal_guess")
printf '%s' "$ccenv_internal_str" \
- | $ccenv_cc -S -xc - -o - \
+ | eval $ccenv_cc -S -xc - -o - \
$(printf '%s' "$ccenv_cflags") \
> /dev/null 2>&3 \
&& ccenv_internal_size=$ccenv_internal_guess