Issue #1683 - Update Brotli lib to 1.0.9

This commit is contained in:
Moonchild 2020-11-13 15:59:29 +00:00 • committed by roytam1
commit 390f3a6272
60 changed files with 3966 additions and 2404 deletions

View file

@ -6,7 +6,7 @@
MY_TEMP_DIR=`mktemp -d -t brotli_update.XXXXXX` || exit 1
git clone https://github.com/google/brotli ${MY_TEMP_DIR}/brotli
git -C ${MY_TEMP_DIR}/brotli checkout v1.0.7
git -C ${MY_TEMP_DIR}/brotli checkout v1.0.9
COMMIT=$(git -C ${MY_TEMP_DIR}/brotli rev-parse HEAD)
perl -p -i -e "s/\[commit [0-9a-f]{40}\]/[commit ${COMMIT}]/" README.mozilla;