Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: third_party/sqlite/src/tool/mkautoconfamal.sh

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 # This script is used to build the amalgamation autoconf package. 2 # This script is used to build the amalgamation autoconf package.
3 # It assumes the following: 3 # It assumes the following:
4 # 4 #
5 # 1. The files "sqlite3.c", "sqlite3.h" and "sqlite3ext.h" 5 # 1. The files "sqlite3.c", "sqlite3.h" and "sqlite3ext.h"
6 # are available in the current directory. 6 # are available in the current directory.
7 # 7 #
8 # 2. Variable $TOP is set to the full path of the root directory 8 # 2. Variable $TOP is set to the full path of the root directory
9 # of the SQLite source tree. 9 # of the SQLite source tree.
10 # 10 #
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 autoconf 74 autoconf
75 rm -rf autom4te.cache 75 rm -rf autom4te.cache
76 76
77 cd ../ 77 cd ../
78 ./configure && make dist 78 ./configure && make dist
79 tar -xzf sqlite-$VERSION.tar.gz 79 tar -xzf sqlite-$VERSION.tar.gz
80 mv sqlite-$VERSION sqlite-autoconf-$ARTIFACT 80 mv sqlite-$VERSION sqlite-autoconf-$ARTIFACT
81 tar -czf sqlite-autoconf-$ARTIFACT.tar.gz sqlite-autoconf-$ARTIFACT 81 tar -czf sqlite-autoconf-$ARTIFACT.tar.gz sqlite-autoconf-$ARTIFACT
82 mv sqlite-autoconf-$ARTIFACT.tar.gz .. 82 mv sqlite-autoconf-$ARTIFACT.tar.gz ..
83 83
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698