diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 18:32:28 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 18:32:28 +0000 |
commit | e545956adc191ad02bb341cb6a3846abcdd6d722 (patch) | |
tree | abdadad68c2c556d67f786adca8eae441ac0c555 | |
parent | ddf02bb5bd451cf6ce7db66f60e0c046f122b32e (diff) | |
download | sbpython3-e545956adc191ad02bb341cb6a3846abcdd6d722.tar.bz2 sbpython3-e545956adc191ad02bb341cb6a3846abcdd6d722.tar.xz |
project: hoppla.sh: also filter out -Wno-unreachable-code.
-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 a28156a..20d5498 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@-Wno-cast-function-type@@g' \ + -e 's@-Wno-unreachable-code@@g' \ -e 's@-Werror@@g' \ -e 's/ */ /g' \ -e 's/[ \t]*$//' \ @@ -121,6 +122,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@-Wno-cast-function-type@@g' \ + -e 's@-Wno-unreachable-code@@g' \ -e 's@-Werror@@g' \ -e 's/ */ /g' \ -e 's/[ \t]*$//' \ |