summaryrefslogtreecommitdiff
path: root/sofort/ccenv
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-10-20 01:38:29 +0000
committermidipix <writeonce@midipix.org>2019-10-20 01:43:34 +0000
commite6889104550061a46a6234bd924b750275dc45be (patch)
tree49e9f79df660b8e623cfc4d093aa29d923662c80 /sofort/ccenv
parent4019af9c24eb894681b257285a35b7a45cc0f677 (diff)
downloadbcparser-e6889104550061a46a6234bd924b750275dc45be.tar.bz2
bcparser-e6889104550061a46a6234bd924b750275dc45be.tar.xz
build system: ccenv.sh: ccenv_set_cc_bits(): word-splitting resilience.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r--sofort/ccenv/ccenv.sh8
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