Changeset 4368
- Timestamp:
- 03/15/09 16:14:31 (4 years ago)
- Files:
-
- 1 modified
-
trunk/install_scripts/macosx/py2app_setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/install_scripts/macosx/py2app_setup.py
r4366 r4368 27 27 28 28 # py2app requires the values in the app's list to have known extensions, but 29 # bin/umit doesn't. Here bin/umit is renamed to bin/umit .py and the old name30 # is stored in common.OLD_UMIT_MAIN so it can be renamed again later.29 # bin/umit doesn't. Here bin/umit is renamed to bin/umit_main.py and the old 30 # name is stored in common.OLD_UMIT_MAIN so it can be renamed again later. 31 31 import shutil 32 shutil.move(common.UMIT_MAIN, common.UMIT_MAIN + ' .py')32 shutil.move(common.UMIT_MAIN, common.UMIT_MAIN + '_main.py') 33 33 common.OLD_UMIT_MAIN = common.UMIT_MAIN 34 common.UMIT_MAIN = os.path.join(common.BIN_DIRNAME, 'umit .py')34 common.UMIT_MAIN = os.path.join(common.BIN_DIRNAME, 'umit_main.py') 35 35 36 36 def revert_rename():
