Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 94b8b82

Browse files
committed
Merged revisions 64246 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r64246 | martin.v.loewis | 2008-06-13 20:58:47 +0200 (Fr, 13 Jun 2008) | 2 lines Pickup sqlite3.dll from binary directory. Commit more often. ........
1 parent 2061155 commit 94b8b82

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Tools/msi/msi.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
full_current_version = None
2525
# Is Tcl available at all?
2626
have_tcl = True
27-
# Where is sqlite3.dll located, relative to srcdir?
28-
sqlite_dir = "../sqlite-source-3.3.4"
2927
# path to PCbuild directory
3028
PCBUILD="PCbuild"
3129
# msvcrt version
@@ -940,6 +938,8 @@ def add_files(db):
940938
dirs={}
941939
pydirs = [(root,"Lib")]
942940
while pydirs:
941+
# Commit every now and then, or else installer will complain
942+
db.Commit()
943943
parent, dir = pydirs.pop()
944944
if dir == ".svn" or dir.startswith("plat-"):
945945
continue
@@ -1042,7 +1042,7 @@ def add_files(db):
10421042
else:
10431043
sqlite_arch = ""
10441044
tclsuffix = ""
1045-
lib.add_file(srcdir+"/"+sqlite_dir+sqlite_arch+"/sqlite3.dll")
1045+
lib.add_file("sqlite3.dll")
10461046
if have_tcl:
10471047
if not os.path.exists("%s/%s/_tkinter.pyd" % (srcdir, PCBUILD)):
10481048
print("WARNING: Missing _tkinter.pyd")

0 commit comments

Comments
 (0)