summaryrefslogtreecommitdiff
path: root/sofort/ccenv/ccenv.sh
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-10-26 19:53:50 +0000
committermidipix <writeonce@midipix.org>2019-10-26 20:26:06 +0000
commitf6cb5277402ed3fabc1030426e100ee139477a46 (patch)
tree00aa40ae1ed9bcb0ac9c6999034263413c16f987 /sofort/ccenv/ccenv.sh
parentf90f5d8a3a63762c9a8973d4bc4910f6dfa7b95f (diff)
downloadapimagic-f6cb5277402ed3fabc1030426e100ee139477a46.tar.bz2
apimagic-f6cb5277402ed3fabc1030426e100ee139477a46.tar.xz
build system: normalize quoting of printf format argument.
Diffstat (limited to 'sofort/ccenv/ccenv.sh')
-rw-r--r--sofort/ccenv/ccenv.sh20
1 files changed, 10 insertions, 10 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index 996557c..59f0105 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -51,7 +51,7 @@ ccenv_comment()
ccenv_find_tool()
{
if [ -z "$ccenv_prefixes" ]; then
- for ccenv_candidate in $(printf %s "$ccenv_candidates"); do
+ for ccenv_candidate in $(printf '%s' "$ccenv_candidates"); do
if [ -z ${@:-} ]; then
if command -v "$ccenv_candidate" > /dev/null; then
ccenv_tool="$ccenv_candidate"
@@ -72,8 +72,8 @@ ccenv_find_tool()
return 0
fi
- for ccenv_prefix in $(printf %s "$ccenv_prefixes"); do
- for ccenv_candidate in $(printf %s "$ccenv_candidates"); do
+ for ccenv_prefix in $(printf '%s' "$ccenv_prefixes"); do
+ for ccenv_candidate in $(printf '%s' "$ccenv_candidates"); do
ccenv_tool="$ccenv_prefix$ccenv_candidate"
if command -v "$ccenv_tool" > /dev/null; then
@@ -82,7 +82,7 @@ ccenv_find_tool()
done
done
- for ccenv_candidate in $(printf %s "$ccenv_candidates"); do
+ for ccenv_candidate in $(printf '%s' "$ccenv_candidates"); do
if command -v "$ccenv_candidate" > /dev/null; then
ccenv_tool="$ccenv_candidate"
return 0
@@ -101,7 +101,7 @@ ccenv_set_primary_tools()
ccenv_hack_tools="addr2line cov elfedit readelf readobj otool"
ccenv_peep_tools="perk mdso dlltool windmc windres"
- for __tool in $(printf %s "$ccenv_core_tools $ccenv_hack_tools $ccenv_peep_tools"); do
+ for __tool in $(printf '%s' "$ccenv_core_tools $ccenv_hack_tools $ccenv_peep_tools"); do
if [ -n "$mb_agnostic" ]; then
ccenv_candidates=" $__tool"
@@ -470,8 +470,8 @@ ccenv_set_cc_bits()
for ccenv_internal_guess in 64 32 128; do
if [ -z $ccenv_internal_size ]; then
- ccenv_internal_str=$(printf "$ccenv_internal_test" \
- "$ccenv_internal_type" \
+ ccenv_internal_str=$(printf '%s' "$ccenv_internal_test" \
+ "$ccenv_internal_type" \
"$ccenv_internal_guess")
printf '%s' "$ccenv_internal_str" \
@@ -1003,7 +1003,7 @@ ccenv_output_defs()
ccenv_exvars="ccenv_cfgtype ccenv_makevar_prefix"
ccenv_sed_substs=" \
- $(for __var in $(printf %s "$ccenv_vars $ccenv_exvars"); do \
+ $(for __var in $(printf '%s' "$ccenv_vars $ccenv_exvars"); do \
printf '%s"$%s"%s' "-e 's/@$__var@/'" \
"$__var" "'/g' "; \
done)"
@@ -1013,7 +1013,7 @@ ccenv_output_defs()
> "$ccenv_mk"
if [ "$ccenv_cfgtype" = 'host' ]; then
- for __var in $(printf %s "$ccenv_vars"); do
+ for __var in $(printf '%s' "$ccenv_vars"); do
ccenv_src_var=$__var
ccenv_dst_var=mb_${__var#*ccenv_}
ccenv_var_expr='${'$ccenv_src_var':-}'
@@ -1024,7 +1024,7 @@ ccenv_output_defs()
mb_host=$ccenv_host
mb_cchost=$ccenv_cchost
else
- for __var in $(printf %s "$ccenv_vars"); do
+ for __var in $(printf '%s' "$ccenv_vars"); do
ccenv_src_var=$__var
ccenv_dst_var=mb_native_${__var#*ccenv_}
ccenv_var_expr='${'$ccenv_src_var':-}'