Add checksum check for patches for CI debugging

This commit is contained in:
lwthiker
2023-08-30 11:42:38 +03:00
parent 19eb2deab1
commit 076df8ccbf

View File

@@ -345,7 +345,7 @@ $(CURL_VERSION)/.patched-chrome: $(srcdir)/chrome/patches/curl-*.patch
rm -Rf $(CURL_VERSION)
tar -xf $(CURL_VERSION).tar.xz
cd $(CURL_VERSION)
for p in $^; do patch -p1 < $$p; done
for p in $^; do echo "Applying patch $$p."; md5sum $$p; patch -p1 < $$p; done
# Re-generate the configure script
autoreconf -fi
touch .patched-chrome