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

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/ext/fts2/mkfts2amal.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 FTS2 code. 3 # This script builds a single C code file holding all of FTS2 code.
4 # The name of the output file is fts2amal.c. To build this file, 4 # The name of the output file is fts2amal.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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 fts2_hash.c 107 fts2_hash.c
108 fts2_porter.c 108 fts2_porter.c
109 fts2_tokenizer.c 109 fts2_tokenizer.c
110 fts2_tokenizer1.c 110 fts2_tokenizer1.c
111 fts2_icu.c 111 fts2_icu.c
112 } { 112 } {
113 copy_file tsrc/$file 113 copy_file tsrc/$file
114 } 114 }
115 115
116 close $out 116 close $out
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698