Home | History | Annotate | Download | only in msi

Lines Matching defs:srcdir

21 srcdir = os.path.abspath("../..")
43 lines = open(srcdir + "/Include/patchlevel.h").readlines()
170 dll_path = os.path.join(srcdir, PCBUILD, "python%s%s.dll" % (major, minor))
171 def_file = os.path.join(srcdir, PCBUILD, "python%s%s.def" % (major, minor))
173 mingw_lib = os.path.join(srcdir, PCBUILD, "libpython%s%s.a" % (major, minor))
178 dll_path = os.path.join(srcdir, PCBUILD, dll_file)
364 if not os.path.exists(srcdir+r"\PC\python_icon.exe"):
367 [("PythonWin", msilib.Binary(r"%s\PCbuild\installer.bmp" % srcdir)), # 152x328 pixels
368 ("py.ico",msilib.Binary(srcdir+r"\PC\py.ico")),
371 [("python_icon.exe", msilib.Binary(srcdir+r"\PC\python_icon.exe"))])
917 shutil.copyfileobj(open(os.path.join(srcdir, "LICENSE")), out)
926 dirs = glob.glob(srcdir+"/externals/"+pat)
928 raise ValueError, "Could not find "+srcdir+"/externals/"+pat
950 root = PyDirectory(db, cab, None, srcdir, "TARGETDIR", "SourceDir")
964 dlldir = PyDirectory(db, cab, root, srcdir, "DLLDIR", ".")
967 pydllsrc = os.path.join(srcdir, PCBUILD, pydll)
978 DLLs = PyDirectory(db, cab, root, srcdir + "/" + PCBUILD, "DLLs", "DLLS|DLLs")
1001 have_ctypes = os.path.exists(srcdir+"/%s/_ctypes.pyd" % PCBUILD)
1105 lib.add_file("py.ico", src=srcdir+"/PC/py.ico")
1106 lib.add_file("pyc.ico", src=srcdir+"/PC/pyc.ico")
1112 if not os.path.exists(srcdir + "/" + PCBUILD + "/" + f):
1128 if not os.path.exists("%s/%s/_tkinter.pyd" % (srcdir, PCBUILD)):
1134 tcldir = os.path.normpath(srcdir+("/externals/tcltk%s/bin" % tclsuffix))
1138 for f in glob.glob1(srcdir+"/"+PCBUILD, "*.pyd"):
1363 for f in glob.glob1(os.path.join(srcdir, PCBUILD), "*.pdb"):
1365 pdbzip.write(os.path.join(srcdir, PCBUILD, f), f)