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 | 84bac90d71986234d4bfdf80eea345a97f171b33 (patch) | |
tree | 077151860c337b3aaaec9594bc4087d608c5f054 | |
parent | e2f6d2dd83381f010eb626c0dfcfad075740e43b (diff) | |
download | ntux-84bac90d71986234d4bfdf80eea345a97f171b33.tar.bz2 ntux-84bac90d71986234d4bfdf80eea345a97f171b33.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' \ |