diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 09:46:28 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 09:46:28 +0000 |
commit | 748534c6ea020f63a9becd5ac30841fede961220 (patch) | |
tree | 030fadcb0c28aa2441ac4f486f9adca57e5bf385 | |
parent | 441d83f0c2c2552c8cfcbab168bf85fd127c20b9 (diff) | |
download | sbpython3-748534c6ea020f63a9becd5ac30841fede961220.tar.bz2 sbpython3-748534c6ea020f63a9becd5ac30841fede961220.tar.xz |
project: hoppla.sh: also filter out trailing spaces.
-rwxr-xr-x | project/hoppla.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/project/hoppla.sh b/project/hoppla.sh index 7adfadc..a194177 100755 --- a/project/hoppla.sh +++ b/project/hoppla.sh @@ -99,6 +99,7 @@ for py_ver in $py_base_ver $py_curr_ver; do -e 's@-Wno-unused-parameter@@g' \ -e 's@-Wno-implicit-fallthrough@@g' \ -e 's/ */ /g' \ + -e 's/[ \t]*$//' \ | sort > cccore.log grep -e ' -c ' pylog | grep -e 'build/temp.' \ @@ -118,6 +119,7 @@ for py_ver in $py_base_ver $py_curr_ver; do -e 's@-Wno-unused-parameter@@g' \ -e 's@-Wno-implicit-fallthrough@@g' \ -e 's/ */ /g' \ + -e 's/[ \t]*$//' \ | sort > ccext.log grep -e ' -shared ' pylog | grep -e '.cpython-' \ |