From b8558439694c06636e1f4e61fcace93ed968fd47 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 20 Oct 2019 01:38:29 +0000 Subject: build system: ccenv.sh: ccenv_set_cc_bits(): word-splitting resilience. --- sofort/ccenv/ccenv.sh | 8 ++++---- 1 file 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 -- cgit v1.2.3