Changeset 875:8f22aae44a00
- Timestamp:
- 06/25/17 12:21:57 (7 years ago)
- Branch:
- default
- Children:
- 876:d9b953e53054, 879:657c4c4dc357
- Phase:
- public
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r808 r875 19 19 [os.path.join("locale", language, "LC_MESSAGES", 20 20 "mlx.mo")])) 21 data_files.append(("", ["logo.png", 22 "conn_grey.png", "conn_red.png", "conn_green.png"])) 21 22 rootFiles = ["logo.png", "conn_grey.png", "conn_red.png", "conn_green.png"] 23 if os.name!="nt": 24 rootFiles.append("Microsoft.VC90.CRT.manifest") 25 data_files.append(("", rootFiles)) 23 26 24 27 if os.name=="nt": … … 29 32 msvcrDir = os.environ["MSVCRDIR"] if "MSVCRDIR" in os.environ else None 30 33 if msvcrDir: 31 data_files.append(("Microsoft.VC90.CRT", glob(os.path.join(msvcrDir, "*.*")))) 34 data_files.append(("Microsoft.VC90.CRT", 35 ["Microsoft.VC90.CRT.manifest"] + 36 glob(os.path.join(msvcrDir, "*.*")))) 32 37 os.environ["PATH"] = os.environ["PATH"] + ";" + glob(os.path.join(msvcrDir))[0] 38 33 39 34 40 gtkRuntimeDir = os.environ["GTKRTDIR"] if "GTKRTDIR" in os.environ else None … … 70 76 71 77 72 73 78 long_description="""MAVA Logger X 74 79
Note:
See TracChangeset
for help on using the changeset viewer.