diff options
author | midipix <writeonce@midipix.org> | 2019-02-13 22:40:24 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-02-13 22:53:17 -0500 |
commit | 43a2594835cebaba29c8c546b1fe4b6c858082b7 (patch) | |
tree | 85e4b3971fbaee3d2da23a5cac43372f0cca380a /sofort/ccenv/ccenv.sh | |
parent | d7866557f2fd36000da9f10177a3c59fbf165053 (diff) | |
download | slibtool-43a2594835cebaba29c8c546b1fe4b6c858082b7.tar.bz2 slibtool-43a2594835cebaba29c8c546b1fe4b6c858082b7.tar.xz |
build system: configure, ccenv.sh: fix sed exp. for trailing tabs & spaces.
Diffstat (limited to 'sofort/ccenv/ccenv.sh')
-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 |