diff options
author | midipix <writeonce@midipix.org> | 2019-02-13 22:40:24 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-02-13 22:53:18 -0500 |
commit | c4275bf68041056c8244830f7b4b65e8cf34ba5e (patch) | |
tree | 81797bea2f8cec7878f5964eecfd0558d2f587fc /sofort/ccenv | |
parent | c9f7f693d7e4cc73c9b411974507f5c26c39687e (diff) | |
download | w32lib-c4275bf68041056c8244830f7b4b65e8cf34ba5e.tar.bz2 w32lib-c4275bf68041056c8244830f7b4b65e8cf34ba5e.tar.xz |
build system: configure, ccenv.sh: fix sed exp. for trailing tabs & spaces.
Diffstat (limited to 'sofort/ccenv')
-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 452694d..65a596a 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -955,7 +955,7 @@ ccenv_output_defs() done)" eval sed $ccenv_sed_substs $ccenv_in \ - | sed -e 's/[ \t]*$//g' \ + | sed -e 's/[[:blank:]]*$//g' \ > "$ccenv_mk" if [ "$ccenv_cfgtype" = 'host' ]; then |