From: Erlend E. Aasland Date: Thu, 18 Sep 2025 09:25:01 +0000 (+0100) Subject: gh-116943: Ensure makesetup does not choke on missing EOL in Setup.* files (#139100) X-Git-Tag: v3.15.0a1~287 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d1904b91cbe3b87f419307e74bbf24a368be501a;p=thirdparty%2FPython%2Fcpython.git gh-116943: Ensure makesetup does not choke on missing EOL in Setup.* files (#139100) --- diff --git a/Modules/makesetup b/Modules/makesetup index f6cf695b457c..104c824b8465 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -90,6 +90,7 @@ NL='\ # Main loop for i in ${*-Setup} do + echo '' # Add a linebreak so we don't choke on files missing EOL. case $i in -n) echo '*noobjects*';; *) echo '*doconfig*'; cat "$i";;