| Index: third_party/sqlite/src/publish.sh
 | 
| diff --git a/third_party/sqlite/src/publish.sh b/third_party/sqlite/src/publish.sh
 | 
| old mode 100755
 | 
| new mode 100644
 | 
| index 87b8346fb7942ea815c4f23a0da7c4623c94843b..6c4dea1efe1b45362a86e23c1604225476daa716
 | 
| --- a/third_party/sqlite/src/publish.sh
 | 
| +++ b/third_party/sqlite/src/publish.sh
 | 
| @@ -34,19 +34,6 @@ gzip sqlite3-$VERS.bin
 | 
|  chmod 644 sqlite3-$VERS.bin.gz
 | 
|  mv sqlite3-$VERS.bin.gz doc
 | 
|  
 | 
| -# Build a source archive useful for windows.
 | 
| -#
 | 
| -make target_source
 | 
| -cd tsrc
 | 
| -echo '***** BUILDING preprocessed source archives'
 | 
| -rm fts[12]* icu*
 | 
| -rm -f ../doc/sqlite-source-$VERSW.zip
 | 
| -zip ../doc/sqlite-source-$VERSW.zip *
 | 
| -cd ..
 | 
| -cp tsrc/sqlite3.h tsrc/sqlite3ext.h .
 | 
| -pwd
 | 
| -zip doc/sqlite-amalgamation-$VERSW.zip sqlite3.c sqlite3.h sqlite3ext.h
 | 
| -
 | 
|  # Build the sqlite.so and tclsqlite.so shared libraries
 | 
|  # under Linux
 | 
|  #
 | 
| @@ -87,11 +74,26 @@ i386-mingw32msvc-gcc -Os $OPTS -Itsrc -I$TCLDIR sqlite3.c tsrc/shell.c \
 | 
|        -o sqlite3.exe
 | 
|  zip doc/sqlite-$VERSW.zip sqlite3.exe
 | 
|  
 | 
| +# Build a source archive useful for windows.
 | 
| +#
 | 
| +make target_source
 | 
| +cd tsrc
 | 
| +echo '***** BUILDING preprocessed source archives'
 | 
| +rm fts[12]* icu*
 | 
| +rm -f ../doc/sqlite-source-$VERSW.zip
 | 
| +zip ../doc/sqlite-source-$VERSW.zip *
 | 
| +cd ..
 | 
| +cp tsrc/sqlite3.h tsrc/sqlite3ext.h .
 | 
| +cp tsrc/shell.c .
 | 
| +pwd
 | 
| +zip doc/sqlite-amalgamation-$VERSW.zip sqlite3.c sqlite3.h sqlite3ext.h shell.c sqlite3.def
 | 
| +
 | 
|  # Construct a tarball of the source tree
 | 
|  #
 | 
|  echo '***** BUILDING source archive'
 | 
|  ORIGIN=`pwd`
 | 
|  cd $srcdir
 | 
| +chmod +x configure
 | 
|  cd ..
 | 
|  mv sqlite sqlite-$VERS
 | 
|  EXCLUDE=`find sqlite-$VERS -print | egrep '(www/|art/|doc/|contrib/|_FOSSIL_)' | sed 's,^, --exclude ,'`
 | 
| 
 |