diff options
author | midipix <writeonce@midipix.org> | 2021-04-19 09:01:33 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-19 09:20:42 +0000 |
commit | 61be1fcb06ae56cdcffdde57e493a4a96d6c3835 (patch) | |
tree | 1eb8001c503de840e8f2c716741a9a2e4e5ab597 /sofort | |
parent | daf8f2ac4a8df1d0b4dd57056727d946c80c2151 (diff) | |
download | sbpython2-61be1fcb06ae56cdcffdde57e493a4a96d6c3835.tar.bz2 sbpython2-61be1fcb06ae56cdcffdde57e493a4a96d6c3835.tar.xz |
build system: ccenv: ccenv_set_cc{_bits}(): handle quotes in $ccenv_cflags.
Diffstat (limited to 'sofort')
-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 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 |