diff options
author | midipix <writeonce@midipix.org> | 2020-09-08 19:28:37 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-01-10 01:32:08 +0000 |
commit | 9e0ce17a745e3c973fd5cacb0108c38ac11a32f2 (patch) | |
tree | 3fda581181b803bc069d34f8b866485690598d02 | |
parent | 88c6028404e7f646278ea6d989e6630025834eba (diff) | |
download | bautomake-9e0ce17a745e3c973fd5cacb0108c38ac11a32f2.tar.bz2 bautomake-9e0ce17a745e3c973fd5cacb0108c38ac11a32f2.tar.xz |
build system: ccenv: ccenv_output_defs(): use conformant sed construct.
-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' \ |