diff options
author | midipix <writeonce@midipix.org> | 2019-02-13 22:40:24 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-02-13 22:53:15 -0500 |
commit | aa2edb60e84d38d3f8e43045342fb0f78719239b (patch) | |
tree | 8d69da8f063350642ad3e3a09991c2392a842b0a | |
parent | c716941c8da870ea9570391428931b8a13b262a4 (diff) | |
download | sbpython2-aa2edb60e84d38d3f8e43045342fb0f78719239b.tar.bz2 sbpython2-aa2edb60e84d38d3f8e43045342fb0f78719239b.tar.xz |
build system: configure, ccenv.sh: fix sed exp. for trailing tabs & spaces.
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -399,7 +399,7 @@ config_copy() eval sed $mb_sed_substs \ $mb_project_dir/Makefile.in \ - | sed -e 's/[ \t]*$//g' \ + | sed -e 's/[[:blank:]]*$//g' \ > $mb_pwd/Makefile.tmp } 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 |