From 55b7f968f974e98720d0d2262c4f513f0355c804 Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Thu, 16 Dec 2021 19:04:30 +0100 Subject: [PATCH] Patch cmake version to a reasonable value --- scripts/patch_cmake.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/patch_cmake.py b/scripts/patch_cmake.py index 2d92d04..5e5a6ba 100644 --- a/scripts/patch_cmake.py +++ b/scripts/patch_cmake.py @@ -27,6 +27,9 @@ for x in f: f.close() p.close() +#Replace cmake version, as 3.19 is not really needed +result.replace("3.19", "3.18") + f = open(input, "w") f.write(result) f.close()