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:30 +0000
commit4ad66385775f2973b22d94246c18e71e521636b1 (patch)
tree55da319584eb4863bd743692f1147e75f00436c1 /sofort/ccenv
parent8ebabe59eaf9e36760eb303c677bfee0545c2628 (diff)
downloadmmglue-4ad66385775f2973b22d94246c18e71e521636b1.tar.bz2
mmglue-4ad66385775f2973b22d94246c18e71e521636b1.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'