Changeset 10 for python/trunk/Lib/distutils/command/install.py
- Timestamp:
- Sep 3, 2010, 5:33:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk/Lib/distutils/command/install.py
r2 r10 284 284 285 285 # Next, stuff that's wrong (or dubious) only on certain platforms. 286 if os.name != "posix" :286 if os.name != "posix" and os.name != "os2": 287 287 if self.exec_prefix: 288 288 self.warn("exec-prefix option ignored on this platform") … … 299 299 self.dump_dirs("pre-finalize_{unix,other}") 300 300 301 if os.name == 'posix' :301 if os.name == 'posix' or os.name == "os2": 302 302 self.finalize_unix() 303 303 else:
Note:
See TracChangeset
for help on using the changeset viewer.