Changes in setup.py [654:4ab835f44be6:497:0ac65bf1abb7]
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r654 r497 28 28 msvcrDir = os.environ["MSVCRDIR"] if "MSVCRDIR" in os.environ else None 29 29 if msvcrDir: 30 data_files.append(("Microsoft.VC90.CRT", glob(os.path.join(msvcrDir, "*.*")))) 31 os.environ["PATH"] = os.environ["PATH"] + ";" + glob(os.path.join(msvcrDir))[0] 30 data_files.append(("Microsoft.VC90.CRT", glob(os.path.join(msvcrDir, "*.*")))) 32 31 33 32 gtkRuntimeDir = os.environ["GTKRTDIR"] if "GTKRTDIR" in os.environ else None … … 47 46 data_files.append((os.path.join("library", path), 48 47 glob(os.path.join(gtkRuntimeDir, path, "*")))) 49 50 cefDir = os.environ.get("CEFDIR")51 if cefDir:52 for fileName in ["icudt.dll", "subprocess.exe"]:53 data_files.append(("", [os.path.join(cefDir, fileName)]))54 55 data_files.append(("locales",56 glob(os.path.join(cefDir, "locales", "*"))))57 58 print data_files59 48 60 49 with open("mlx-common.nsh", "wt") as f: … … 91 80 92 81 if os.name=="nt": 93 os.rename(os.path.join(scriptdir, "dist", "library", "libcef.dll"),94 os.path.join(scriptdir, "dist", "libcef.dll"))95 82 mlx.update.buildManifest(os.path.join(scriptdir, "dist")) 96 83 with open(os.path.join(scriptdir, "dist", "Uninstall.conf"), "wt") as f:
Note:
See TracChangeset
for help on using the changeset viewer.