Kaydet (Commit) 368729de authored tarafından Michael Stahl's avatar Michael Stahl

scp2: move python executables to AutoInstall

Change-Id: I94919f11150f39148219afc613ced99f74c539c0
üst f4fac5ee
...@@ -102,6 +102,12 @@ $(eval $(call gb_Helper_register_executables_for_install,OOO,crashrep, \ ...@@ -102,6 +102,12 @@ $(eval $(call gb_Helper_register_executables_for_install,OOO,crashrep, \
)) ))
endif endif
$(eval $(call gb_Helper_register_executables_for_install,OOO,python, \
$(if $(filter WNT,$(OS)), \
python \
) \
))
ifneq ($(ENABLE_PDFIMPORT),) ifneq ($(ENABLE_PDFIMPORT),)
$(eval $(call gb_Helper_register_executables_for_install,OOO,pdfimport, \ $(eval $(call gb_Helper_register_executables_for_install,OOO,pdfimport, \
xpdfimport \ xpdfimport \
...@@ -127,7 +133,6 @@ $(eval $(call gb_Helper_register_executables,OOO, \ ...@@ -127,7 +133,6 @@ $(eval $(call gb_Helper_register_executables,OOO, \
$(if $(and $(ENABLE_GTK), $(filter LINUX,$(OS))), gtktiledviewer) \ $(if $(and $(ENABLE_GTK), $(filter LINUX,$(OS))), gtktiledviewer) \
$(if $(filter WNT,$(OS)), \ $(if $(filter WNT,$(OS)), \
odbcconfig \ odbcconfig \
python \
quickstart \ quickstart \
sbase \ sbase \
scalc \ scalc \
......
...@@ -27,7 +27,7 @@ $(eval $(call gb_AutoInstall_add_module,ogltrans,LIBO_LIB_FILE)) ...@@ -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,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,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,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,postgresqlsdbc,LIBO_LIB_FILE))
$(eval $(call gb_AutoInstall_add_module,pdfimport,LIBO_LIB_FILE,LIBO_EXECUTABLE)) $(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)) $(eval $(call gb_AutoInstall_add_module,reportbuilder,LIBO_LIB_FILE,,LIBO_JAR_FILE))
......
...@@ -43,18 +43,12 @@ End ...@@ -43,18 +43,12 @@ End
#ifndef SYSTEM_PYTHON #ifndef SYSTEM_PYTHON
#if !defined MACOSX #if !defined MACOSX && !defined WNT
File gid_File_Py_Bin_Python File gid_File_Py_Bin_Python
BIN_FILE_BODY; BIN_FILE_BODY;
#ifdef WNT
Name = EXENAME(python);
Dir = gid_Brand_Dir_Program;
Styles = (PACKED);
#else
Name = "python_shell.filelist"; Name = "python_shell.filelist";
Dir = FILELIST_DIR; Dir = FILELIST_DIR;
Styles = (FILELIST, PACKED); Styles = (FILELIST, PACKED);
#endif
End End
#endif #endif
...@@ -102,7 +96,7 @@ End ...@@ -102,7 +96,7 @@ End
// python_wrapper.exe // python_wrapper.exe
File gid_File_Py_Bin_Python File gid_File_Py_Bin_Python
BIN_FILE_BODY; BIN_FILE_BODY;
Name = EXENAME(python); Name = "python.exe";
Dir = gid_Brand_Dir_Program; Dir = gid_Brand_Dir_Program;
Styles = (PACKED); Styles = (PACKED);
End End
...@@ -132,7 +126,7 @@ End ...@@ -132,7 +126,7 @@ End
File gid_File_Py_Python_Bin File gid_File_Py_Python_Bin
BIN_FILE_BODY; BIN_FILE_BODY;
Dir = gid_Dir_Py_PythonCore_Bin; Dir = gid_Dir_Py_PythonCore_Bin;
Name = EXENAME(python); Name = "python.exe";
Styles = (PACKED); Styles = (PACKED);
End End
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment