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

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/ext/fts3/mkfts3amal.tcl

Issue 883353008: [sql] Import reference version of SQLite 3.8.7.4. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hold back encoding change which is messing up patch. 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 #!/usr/bin/tclsh 1 #!/usr/bin/tclsh
2 # 2 #
3 # This script builds a single C code file holding all of FTS3 code. 3 # This script builds a single C code file holding all of FTS3 code.
4 # The name of the output file is fts3amal.c. To build this file, 4 # The name of the output file is fts3amal.c. To build this file,
5 # first do: 5 # first do:
6 # 6 #
7 # make target_source 7 # make target_source
8 # 8 #
9 # The make target above moves all of the source code files into 9 # The make target above moves all of the source code files into
10 # a subdirectory named "tsrc". (This script expects to find the files 10 # a subdirectory named "tsrc". (This script expects to find the files
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 fts3.c 106 fts3.c
107 fts3_hash.c 107 fts3_hash.c
108 fts3_porter.c 108 fts3_porter.c
109 fts3_tokenizer.c 109 fts3_tokenizer.c
110 fts3_tokenizer1.c 110 fts3_tokenizer1.c
111 } { 111 } {
112 copy_file tsrc/$file 112 copy_file tsrc/$file
113 } 113 }
114 114
115 close $out 115 close $out
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698