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 | b0a0eb055a7c349462e7ec4e88fc482b1bc89594 (patch) | |
tree | b40a731b4f224cd7719dff91ca5e7490ec33921a | |
parent | c074c1c74c130aa1aaaa59bcfe2e6a27598c3556 (diff) | |
download | ptycon-b0a0eb055a7c349462e7ec4e88fc482b1bc89594.tar.bz2 ptycon-b0a0eb055a7c349462e7ec4e88fc482b1bc89594.tar.xz |
build system: ccenv.sh: add missing '-e' argument in sed invocation.
-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' |