diff options
author | midipix <writeonce@midipix.org> | 2019-10-20 01:38:29 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-20 01:43:35 +0000 |
commit | a0e9a03dd0c1c694fa28b4337d6c2b3a3b6475a2 (patch) | |
tree | 8286f75363e817daf19516a3a46da3d23c3506bd /sofort | |
parent | ce069b1efffaddc832825d1f682e0002398507f8 (diff) | |
download | sbpython3-a0e9a03dd0c1c694fa28b4337d6c2b3a3b6475a2.tar.bz2 sbpython3-a0e9a03dd0c1c694fa28b4337d6c2b3a3b6475a2.tar.xz |
build system: ccenv.sh: ccenv_set_cc_bits(): word-splitting resilience.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index e28a1fb..996557c 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -474,10 +474,10 @@ ccenv_set_cc_bits() "$ccenv_internal_type" \ "$ccenv_internal_guess") - printf '%s' "$ccenv_internal_str" \ - | $ccenv_cc -S -xc - -o - \ - $ccenv_cflags \ - > /dev/null 2>/dev/null \ + printf '%s' "$ccenv_internal_str" \ + | $ccenv_cc -S -xc - -o - \ + $(printf '%s' "$ccenv_cflags") \ + > /dev/null 2>/dev/null \ && ccenv_internal_size=$ccenv_internal_guess fi done |