diff options
author | midipix <writeonce@midipix.org> | 2019-10-20 01:38:29 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-20 01:43:34 +0000 |
commit | 30344952b78f301c6f284df4712139eae8c29126 (patch) | |
tree | 920fcc80cc7e17c55544641099678a24731a9bd3 | |
parent | 1a3ec063fadc33d8e65bed6ef200055fc3182a1d (diff) | |
download | mdso-30344952b78f301c6f284df4712139eae8c29126.tar.bz2 mdso-30344952b78f301c6f284df4712139eae8c29126.tar.xz |
build system: ccenv.sh: ccenv_set_cc_bits(): word-splitting resilience.
-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 |