From 9613809f2a9510d2c67bf34f9c8af2108818307b Mon Sep 17 00:00:00 2001 From: yghjn Date: Mon, 18 Mar 2024 15:40:41 +0800 Subject: [PATCH 1/3] fix issue --- Modules/makesetup | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Modules/makesetup b/Modules/makesetup index d41b6640bb5186f..86c80204c26ffba 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -92,7 +92,12 @@ for i in ${*-Setup} do case $i in -n) echo '*noobjects*';; - *) echo '*doconfig*'; cat "$i";; + *) + echo '*doconfig*'; cat "$i" + if [ "$(tail -c 1 $i)" != "" ]; then + echo "" + fi + ;; esac done | sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | From 6e5d27425ea05a3784658704c14997f4008eb05b Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 08:56:12 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst diff --git a/Misc/NEWS.d/next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst b/Misc/NEWS.d/next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst new file mode 100644 index 000000000000000..1d2280452659f05 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst @@ -0,0 +1 @@ +small change to `Modules/makesetup` to allow missing ending line break for `Setup` files. From ed6e0b40019c0f7479778cf9de18126922c06e13 Mon Sep 17 00:00:00 2001 From: yghjn <126801235+yghjn@users.noreply.github.com> Date: Mon, 18 Mar 2024 17:21:01 +0800 Subject: [PATCH 3/3] Update 2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst --- .../next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS.d/next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst b/Misc/NEWS.d/next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst index 1d2280452659f05..a0d11e2059b60b1 100644 --- a/Misc/NEWS.d/next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst +++ b/Misc/NEWS.d/next/Build/2024-03-18-08-56-11.gh-issue-116943.in6ev9.rst @@ -1 +1 @@ -small change to `Modules/makesetup` to allow missing ending line break for `Setup` files. +small change to ``Modules/makesetup`` to allow missing ending line break for ``Setup`` files.