diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2018-08-26 17:22:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-27 08:47:49 +0200 |
commit | 2b5812e0191d43bff939274d88e7ec3ce02ce6cd (patch) | |
tree | f360e4740c06eb0d1fc33d3e087e578fcaf760e0 /Repository.mk | |
parent | e6f4779de8fea16931967ce206439c5780d46125 (diff) |
rename ENABLE_HEADLESS option to DISABLE_GUI
since it has nothing to do with the headless command line option, so
use the name it has in the configure.ac file
Change-Id: Ibf0615ed02695d6e48a797f5632e4f417c010c70
Reviewed-on: https://gerrit.libreoffice.org/59611
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'Repository.mk')
-rw-r--r-- | Repository.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Repository.mk b/Repository.mk index b5c0b5b151a1..fdcb6115c507 100644 --- a/Repository.mk +++ b/Repository.mk @@ -200,7 +200,7 @@ $(eval $(call gb_Helper_register_executables_for_install,OOO,ooo, \ gengal \ $(if $(filter WNT,$(OS)),,uri-encode) \ $(if $(ENABLE_MACOSX_SANDBOX),, \ - $(if $(ENABLE_HEADLESS),, \ + $(if $(DISABLE_GUI),, \ ui-previewer \ ) \ ) \ @@ -429,7 +429,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ slideshow \ sot \ spell \ - $(if $(ENABLE_HEADLESS),,spl) \ + $(if $(DISABLE_GUI),,spl) \ storagefd \ $(call gb_Helper_optional,SCRIPTING,stringresource) \ svgio \ @@ -962,7 +962,7 @@ $(eval $(call gb_Helper_register_packages_for_install,ooo,\ $(eval $(call gb_Helper_register_packages_for_install,ooo_fonts,\ extras_fonts \ - $(if $(USING_X11)$(ENABLE_HEADLESS)$(filter ANDROID,$(OS)), \ + $(if $(USING_X11)$(DISABLE_GUI)$(filter ANDROID,$(OS)), \ postprocess_fontconfig) \ $(call gb_Helper_optional,MORE_FONTS,\ fonts_alef \ @@ -1017,7 +1017,7 @@ $(eval $(call gb_Helper_register_packages_for_install,brand,\ $(if $(CUSTOM_BRAND_DIR),desktop_branding_custom) \ $(if $(filter DESKTOP,$(BUILD_TYPE)),desktop_scripts_install) \ $(if $(and $(filter-out MACOSX WNT,$(OS)),$(filter DESKTOP,$(BUILD_TYPE))),\ - $(if $(ENABLE_HEADLESS),, \ + $(if $(DISABLE_GUI),, \ desktop_soffice_sh \ ) \ ) \ |