diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:42:22 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:42:43 +0000 |
commit | d6d2d5abefe8cff07f5d00fd21b9ae32ac9a7b6b (patch) | |
tree | d8be2fec2069c34c0722be363a2e0d11a1df60a2 /sofort | |
parent | 76c495c811ac6cac3c6f8a2c8613595ccfbc1e74 (diff) | |
download | w32lib-d6d2d5abefe8cff07f5d00fd21b9ae32ac9a7b6b.tar.bz2 w32lib-d6d2d5abefe8cff07f5d00fd21b9ae32ac9a7b6b.tar.xz |
build system: ccenv_set_cc(): fix parenthesis in fallback sub-shell code path.
Diffstat (limited to 'sofort')
-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 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 |