1180 |
1180 |
1181 if macPythonExe == defaultMacPythonExe and macPythonExe: |
1181 if macPythonExe == defaultMacPythonExe and macPythonExe: |
1182 starter = os.path.join(directories["exe"], "eric") |
1182 starter = os.path.join(directories["exe"], "eric") |
1183 os.symlink(macPythonExe, starter) |
1183 os.symlink(macPythonExe, starter) |
1184 else: |
1184 else: |
1185 starter = "python{0}".format(sys.version_info.major) |
1185 starter = "python{0}.{1}".format(sys.version_info.major, sys.version_info.minor) |
1186 |
1186 |
1187 wname = os.path.join(directories["exe"], "eric7_ide") |
1187 wname = os.path.join(directories["exe"], "eric7_ide") |
1188 |
1188 |
1189 # determine entry for DYLD_FRAMEWORK_PATH |
1189 # determine entry for DYLD_FRAMEWORK_PATH |
1190 dyldLine = "" |
1190 dyldLine = "" |