diff options
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/AutoInstall.mk | 2 | ||||
-rw-r--r-- | scp2/source/python/file_python.scp | 12 |
2 files changed, 4 insertions, 10 deletions
diff --git a/scp2/AutoInstall.mk b/scp2/AutoInstall.mk index 1e492e1288b8..588df0163df1 100644 --- a/scp2/AutoInstall.mk +++ b/scp2/AutoInstall.mk @@ -27,7 +27,7 @@ $(eval $(call gb_AutoInstall_add_module,ogltrans,LIBO_LIB_FILE)) $(eval $(call gb_AutoInstall_add_module,onlineupdate,LIBO_LIB_FILE_COMPONENTCONDITION,,,"ISCHECKFORPRODUCTUPDATES=1")) $(eval $(call gb_AutoInstall_add_module,ooo,LIBO_LIB_FILE,LIBO_EXECUTABLE,LIBO_JAR_FILE)) $(eval $(call gb_AutoInstall_add_module,ooobinarytable,LIBO_LIB_FILE_BINARYTABLE)) -$(eval $(call gb_AutoInstall_add_module,python,LIBO_LIB_FILE)) +$(eval $(call gb_AutoInstall_add_module,python,LIBO_LIB_FILE,LIBO_EXECUTABLE)) $(eval $(call gb_AutoInstall_add_module,postgresqlsdbc,LIBO_LIB_FILE)) $(eval $(call gb_AutoInstall_add_module,pdfimport,LIBO_LIB_FILE,LIBO_EXECUTABLE)) $(eval $(call gb_AutoInstall_add_module,reportbuilder,LIBO_LIB_FILE,,LIBO_JAR_FILE)) diff --git a/scp2/source/python/file_python.scp b/scp2/source/python/file_python.scp index 247748a83f25..e5bebefc5279 100644 --- a/scp2/source/python/file_python.scp +++ b/scp2/source/python/file_python.scp @@ -43,18 +43,12 @@ End #ifndef SYSTEM_PYTHON -#if !defined MACOSX +#if !defined MACOSX && !defined WNT File gid_File_Py_Bin_Python BIN_FILE_BODY; -#ifdef WNT - Name = EXENAME(python); - Dir = gid_Brand_Dir_Program; - Styles = (PACKED); -#else Name = "python_shell.filelist"; Dir = FILELIST_DIR; Styles = (FILELIST, PACKED); -#endif End #endif @@ -102,7 +96,7 @@ End // python_wrapper.exe File gid_File_Py_Bin_Python BIN_FILE_BODY; - Name = EXENAME(python); + Name = "python.exe"; Dir = gid_Brand_Dir_Program; Styles = (PACKED); End @@ -132,7 +126,7 @@ End File gid_File_Py_Python_Bin BIN_FILE_BODY; Dir = gid_Dir_Py_PythonCore_Bin; - Name = EXENAME(python); + Name = "python.exe"; Styles = (PACKED); End |