diff options
author | midipix <writeonce@midipix.org> | 2021-04-15 17:44:24 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-15 18:16:32 +0000 |
commit | fa64c0fd17f572c6f922007b5ead7175b8a0d062 (patch) | |
tree | 87a58330224e4b9f5d39781c1a6826b031afb7b0 /sofort | |
parent | fbef7a6973417c29deb2f5b26bb3c15c642b467f (diff) | |
download | perk-fa64c0fd17f572c6f922007b5ead7175b8a0d062.tar.bz2 perk-fa64c0fd17f572c6f922007b5ead7175b8a0d062.tar.xz |
build system: ccenv.sh: add missing '-e' argument in sed invocation.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 3 |
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' |