Index: third_party/sqlite/README.chromium |
diff --git a/third_party/sqlite/README.chromium b/third_party/sqlite/README.chromium |
index 1c8d74aa1f72deede68178d10592c5eefaff20b5..3ec73ec4475c26e36baa4c14ed4dc8f4fa60b4e4 100644 |
--- a/third_party/sqlite/README.chromium |
+++ b/third_party/sqlite/README.chromium |
@@ -136,7 +136,7 @@ git rebase sqlite_${BASE} |
# SQLite's download page is at <http://www.sqlite.org/download.html>. Scroll to |
# "Legacy Source Code Distribution Formats", and grab sqlite-src-<VERSION>.zip. |
# Unzip it and pull it into the repo. |
-wget http://www.sqlite.org/2014/sqlite-src-${VERSION}.zip |
+wget http://www.sqlite.org/2016/sqlite-src-${VERSION}.zip |
unzip sqlite-src-${VERSION}.zip |
rm sqlite-src-${VERSION}.zip |
# -f includes ignored files, of which there are a couple. |
@@ -146,7 +146,8 @@ git commit -m "Begin import of sqlite-src-${VERSION}" |
# OSX and Linux and fixes those files, but double-check the results before |
# committing: |
egrep --exclude="*.eps" --exclude="*.ico" --exclude="*.jpg" \ |
- --exclude="*.gif" --exclude="*.tiff" --exclude="*.vsix" -URl '\r' \ |
+ --exclude="*.gif" --exclude="*.tiff" --exclude="*.vsix" \ |
+ --exclude="*.db" -URl '\r' \ |
sqlite-src-${VERSION}/ | LANG=C xargs sed -i~ -e $'s/\r$//' |
# This might fail for lack of changes. |
git commit -a -m "Fix line endings for sqlite-src-${VERSION}" |