summaryrefslogtreecommitdiffhomepage
path: root/sofort/ccenv
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-04-15 17:44:24 +0000
committermidipix <writeonce@midipix.org>2021-04-15 18:16:32 +0000
commitfa64c0fd17f572c6f922007b5ead7175b8a0d062 (patch)
tree87a58330224e4b9f5d39781c1a6826b031afb7b0 /sofort/ccenv
parentfbef7a6973417c29deb2f5b26bb3c15c642b467f (diff)
downloadperk-fa64c0fd17f572c6f922007b5ead7175b8a0d062.tar.bz2
perk-fa64c0fd17f572c6f922007b5ead7175b8a0d062.tar.xz
build system: ccenv.sh: add missing '-e' argument in sed invocation.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r--sofort/ccenv/ccenv.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index a9fdc96..95effcb 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -834,7 +834,8 @@ ccenv_set_cc_binfmt()
# MACHO / readobj
if [ -n "$ccenv_readobj" ] && [ -z "$ccenv_cc_binfmt" ]; then
if $ccenv_readobj $ccenv_image 2>&3 \
- | grep -i 'Format:' | sed 's/ /_/g' \
+ | grep -i 'Format:' \
+ | sed -e 's/ /_/g' \
| grep -i '_Mach-O_' \
> /dev/null; then
ccenv_cc_binfmt='MACHO'