gengal script calling gengal.bin is not needed on Mac

Change-Id: If965ab126be497a7b2af227a843aeb746901def2
This commit is contained in:
Stephan Bergmann
2015-11-27 15:43:37 +01:00
parent c5eec1c31e
commit 69858a99c9
3 changed files with 5 additions and 2 deletions

View File

@@ -27,7 +27,9 @@ gb_Executable_FILENAMES := $(patsubst uno:uno,uno:uno.bin,$(gb_Executable_FILENA
endif
gb_Executable_FILENAMES := $(patsubst unopkg_bin:unopkg_bin%,unopkg_bin:unopkg$(if $(filter-out MACOSX,$(OS)),.bin),$(gb_Executable_FILENAMES))
gb_Executable_FILENAMES := $(patsubst unopkg_com:unopkg_com%,unopkg_com:unopkg.com,$(gb_Executable_FILENAMES))
ifneq ($(OS),MACOSX)
gb_Executable_FILENAMES := $(patsubst gengal:gengal,gengal:gengal.bin,$(gb_Executable_FILENAMES))
endif
ifeq ($(OS),MACOSX)
gb_Executable_FILENAMES := $(patsubst soffice_bin:soffice_bin,soffice_bin:soffice,$(gb_Executable_FILENAMES))

View File

@@ -48,7 +48,7 @@ File gid_File_Basic_User_Standard
Name = "wizards_basicsrvstandard.filelist";
End
#if defined UNX
#if defined UNX && !defined MACOSX
File gid_File_Script_Gengal
BIN_FILE_BODY;

View File

@@ -39,8 +39,9 @@ $(eval $(call gb_Module_add_check_targets,svx,\
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
$(eval $(call gb_Module_add_targets,svx,\
Executable_gengal \
$(if $(filter-out MACOSX WNT,$(OS)), \
Package_gengal) \
$(if $(filter-out WNT,$(OS)), \
Package_gengal \
Executable_pixelctl) \
))
endif