Home | History | Annotate | Download | only in msi

Lines Matching defs:srcdir

21 srcdir = os.path.abspath("../..")

43 lines = open(srcdir + "/Include/patchlevel.h").readlines()
172 lib_file = os.path.join(srcdir, PCBUILD, "python%s%s.lib" % (major, minor))
173 def_file = os.path.join(srcdir, PCBUILD, "python%s%s.def" % (major, minor))
175 mingw_lib = os.path.join(srcdir, PCBUILD, "libpython%s%s.a" % (major, minor))
180 dll_path = os.path.join(srcdir, PCBUILD, dll_file)
363 if not os.path.exists(srcdir+r"\PC\python_icon.exe"):
366 [("PythonWin", msilib.Binary(r"%s\PCbuild\installer.bmp" % srcdir)), # 152x328 pixels
367 ("py.ico",msilib.Binary(srcdir+r"\PC\py.ico")),
370 [("python_icon.exe", msilib.Binary(srcdir+r"\PC\python_icon.exe"))])
879 shutil.copyfileobj(open(os.path.join(srcdir, "LICENSE")), out)
888 dirs = glob.glob(srcdir+"/../"+pat)
890 raise ValueError, "Could not find "+srcdir+"/../"+pat
912 root = PyDirectory(db, cab, None, srcdir, "TARGETDIR", "SourceDir")
926 dlldir = PyDirectory(db, cab, root, srcdir, "DLLDIR", ".")
929 pydllsrc = os.path.join(srcdir, PCBUILD, pydll)
940 DLLs = PyDirectory(db, cab, root, srcdir + "/" + PCBUILD, "DLLs", "DLLS|DLLs")
963 have_ctypes = os.path.exists(srcdir+"/%s/_ctypes.pyd" % PCBUILD)
1059 lib.add_file("py.ico", src=srcdir+"/PC/py.ico")
1060 lib.add_file("pyc.ico", src=srcdir+"/PC/pyc.ico")
1066 if not os.path.exists(srcdir + "/" + PCBUILD + "/" + f):
1082 if not os.path.exists("%s/%s/_tkinter.pyd" % (srcdir, PCBUILD)):
1088 tcldir = os.path.normpath(srcdir+("/../tcltk%s/bin" % tclsuffix))
1092 for f in glob.glob1(srcdir+"/"+PCBUILD, "*.pyd"):
1309 for f in glob.glob1(os.path.join(srcdir, PCBUILD), "*.pdb"):
1311 pdbzip.write(os.path.join(srcdir, PCBUILD, f), f)