summaryrefslogtreecommitdiff
path: root/sofort/ccenv
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-05-27 04:42:22 +0000
committermidipix <writeonce@midipix.org>2021-05-27 04:42:43 +0000
commit0beaccfe701ee5f973cfa2ffec2e4efee32e43b2 (patch)
treebf8095f8173ba009321aafc4715f39cfbe791be0 /sofort/ccenv
parente7f8595b15f9826ee047cc2cb681af482675487d (diff)
downloadtpax-0beaccfe701ee5f973cfa2ffec2e4efee32e43b2.tar.bz2
tpax-0beaccfe701ee5f973cfa2ffec2e4efee32e43b2.tar.xz
build system: ccenv_set_cc(): fix parenthesis in fallback sub-shell code path.
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 14e8b9a..378071f 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -495,8 +495,8 @@ ccenv_set_cc()
ccenv_host=$(eval $ccenv_cc $(printf '%s' "$ccenv_cflags") \
$ccenv_dumpmachine_switch 2>&3)
else
- ccenv_host=$(printf '%s' $(uname -m)-$(uname -p)-$(uname -o)) \
- | tr '[[:upper:]]' '[[:lower:]]'
+ ccenv_host=$(printf '%s' $(uname -m)-$(uname -p)-$(uname -o) \
+ | tr '[[:upper:]]' '[[:lower:]]')
fi
ccenv_cchost=$ccenv_host
@@ -519,8 +519,8 @@ ccenv_set_cc()
elif [ -z "$ccenv_host" ]; then
# assume that no -dumpmachine support means native build (fixme)
- ccenv_host=$(printf '%s' $(uname -m)-$(uname -p)-$(uname -o)) \
- | tr '[[:upper:]]' '[[:lower:]]' 2>&3
+ ccenv_host=$(printf '%s' $(uname -m)-$(uname -p)-$(uname -o) \
+ | tr '[[:upper:]]' '[[:lower:]]')
ccenv_cchost=$ccenv_host
elif [ -n "$ccenv_dumpmachine_switch" ]; then