From 13784c9e24a454178ebeb82ffa95b4c1a7c8d1dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20A=C3=9Fhauer?= Date: Sat, 4 Jan 2025 11:06:21 +0100 Subject: [PATCH] llvm: add changed patches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As we noticed in [1] the update script for llvm currently doesn't properly handle added or removed patches. This can break the llvm build. Update the script to handle these patches. [1] https://github.com/git-for-windows/MINGW-packages/pull/132 Signed-off-by: Matthias Aßhauer --- update-scripts/version/mingw-w64-llvm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/update-scripts/version/mingw-w64-llvm b/update-scripts/version/mingw-w64-llvm index 11957996..e3288c0f 100644 --- a/update-scripts/version/mingw-w64-llvm +++ b/update-scripts/version/mingw-w64-llvm @@ -1,2 +1,3 @@ #!/bin/bash -. ./update-clang-from-msys2.sh +. ./update-clang-from-msys2.sh && +git add --all '*.patch'