From 1d13d436e5bc3a6b42b4a1c3504c9413e46d72e2 Mon Sep 17 00:00:00 2001 From: midipix Date: Apr 19 2021 09:20:41 +0000 Subject: build system: ccenv: ccenv_set_cc{_bits}(): handle quotes in $ccenv_cflags. --- 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