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

Side by Side Diff: third_party/sqlite/src/tool/mkvsix.tcl

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 #!/usr/bin/tclsh 1 #!/usr/bin/tclsh
2 # 2 #
3 # This script is used to generate a VSIX (Visual Studio Extension) file for 3 # This script is used to generate a VSIX (Visual Studio Extension) file for
4 # SQLite usable by Visual Studio. 4 # SQLite usable by Visual Studio.
5 # 5 #
6 # PREREQUISITES 6 # PREREQUISITES
7 # 7 #
8 # 1. Tcl 8.4 and later are supported, earlier versions have not been tested. 8 # 1. Tcl 8.4 and later are supported, earlier versions have not been tested.
9 # 9 #
10 # 2. The "sqlite3.h" file is assumed to exist in the parent directory of the 10 # 2. The "sqlite3.h" file is assumed to exist in the parent directory of the
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 # NOTE: Cleanup the temporary staging directory. 804 # NOTE: Cleanup the temporary staging directory.
805 # 805 #
806 file delete -force $stagingDirectory 806 file delete -force $stagingDirectory
807 807
808 ############################################################################### 808 ###############################################################################
809 809
810 # 810 #
811 # NOTE: Success, emit the fully qualified path of the generated VSIX file. 811 # NOTE: Success, emit the fully qualified path of the generated VSIX file.
812 # 812 #
813 puts stdout $outputFile 813 puts stdout $outputFile
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698