From e0fdad7fc6c40f35a7ab1e10f1d13cbe07de0929 Mon Sep 17 00:00:00 2001 From: Rye Mutt Date: Sat, 10 Aug 2024 09:07:49 -0400 Subject: [PATCH] Fix broken application of patches that slipped in from last commit --- build-cmd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-cmd.sh b/build-cmd.sh index 995f0bc69b..41d99c95a2 100755 --- a/build-cmd.sh +++ b/build-cmd.sh @@ -50,7 +50,7 @@ apply_patch() local patch="$1" local path="$2" echo "Applying $patch..." - git apply --check --directory="$path" "$patch" || git apply --directory="$path" "$patch" + git apply --check --reverse --directory="$path" "$patch" || git apply --directory="$path" "$patch" } apply_patch "../patches/libs/config/0001-Define-BOOST_ALL_NO_LIB.patch" "libs/config"