diff options
author | midipix <writeonce@midipix.org> | 2020-09-08 19:28:37 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-01-10 01:32:11 +0000 |
commit | c4dfa4129fa194419156a282bdd80f34d7ae0751 (patch) | |
tree | 18c7349d6799fce55194ab1c7d6c199092a2a0a6 /sofort | |
parent | 0b16c39c19bb3d8f21c7715f606b47529b5ed462 (diff) | |
download | tpax-c4dfa4129fa194419156a282bdd80f34d7ae0751.tar.bz2 tpax-c4dfa4129fa194419156a282bdd80f34d7ae0751.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' \ |