diff options
author | midipix <writeonce@midipix.org> | 2020-09-08 19:28:37 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-01-10 01:32:10 +0000 |
commit | f4c2b92a9bab6117b7b0efa02574778e8f17a85f (patch) | |
tree | bd91565f92db57ca73c4a139e1ad2d698fd4070d /sofort | |
parent | 18acfcdfc4f87f026f258dddf1fc070e9ba6198c (diff) | |
download | pemagine-f4c2b92a9bab6117b7b0efa02574778e8f17a85f.tar.bz2 pemagine-f4c2b92a9bab6117b7b0efa02574778e8f17a85f.tar.xz |
build system: ccenv: ccenv_output_defs(): use conformant sed construct.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index f996333..a956425 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -1254,7 +1254,7 @@ ccenv_output_defs() ccenv_tmp=$(mktemp ./tmp_XXXXXXXXXXXXXXXX) sed \ - -e 's/^\s*$/@/g' \ + -e 's/^[[:space:]]*$/@/g' \ -e 's/^/NATIVE_/' \ -e 's/NATIVE_@//g' \ -e 's/NATIVE_#/#/g' \ |