From 748534c6ea020f63a9becd5ac30841fede961220 Mon Sep 17 00:00:00 2001 From: midipix Date: Jun 15 2021 09:46:28 +0000 Subject: project: hoppla.sh: also filter out trailing spaces. --- 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-' \