diff options
author | midipix <writeonce@midipix.org> | 2019-02-13 22:40:24 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-02-13 22:53:05 -0500 |
commit | 6b2d46fdae5e87e5f37289ae2da6b03baef767ae (patch) | |
tree | bb6fc6436aa72f3c967d10260c1b56039af170ad /sofort/ccenv | |
parent | 08afec5892ae25e2945ca02c370810a6a6f9a88f (diff) | |
download | bfirm-6b2d46fdae5e87e5f37289ae2da6b03baef767ae.tar.bz2 bfirm-6b2d46fdae5e87e5f37289ae2da6b03baef767ae.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 |