postprocess/CustomTarget_registry.mk | 4 ++++ 1 file changed, 4 insertions(+)
New commits: commit 3b654bd876070313d6b7e9775fde235fa4eda240 Author: Gökay Şatır <gokaysa...@collabora.com> AuthorDate: Tue Jan 7 12:48:00 2025 +0300 Commit: Miklos Vajna <vmik...@collabora.com> CommitDate: Thu Feb 6 10:50:39 2025 +0100 Make sure that certain accelerator files are included for LOK case. Issue: Accelerators-unxwnt file is omitted when window system is different than X11. This causes LOK to miss the shortcuts which has "install:module="unxwnt"" signature. This commit adds the required file in linux case. Change-Id: I4a8425d17a5d95b03a176153506f29a3f393c173 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181204 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmik...@collabora.com> diff --git a/postprocess/CustomTarget_registry.mk b/postprocess/CustomTarget_registry.mk index 9253848dd043..4fc1080b6f04 100644 --- a/postprocess/CustomTarget_registry.mk +++ b/postprocess/CustomTarget_registry.mk @@ -293,6 +293,10 @@ postprocess_FILES_main += \ $(postprocess_MOD)/org/openoffice/VCL-unixdesktop.xcu # Inet-unixdesktop.xcu must come after Inet.xcu # VCL-unixdesktop.xcu must come after VCL.xcu +else ifeq (LINUX,$(OS)) +postprocess_FILES_main += \ + $(postprocess_MOD)/org/openoffice/Office/Accelerators-unxwnt.xcu + # This condition is for LOK case. When the windowing system is not X11, above condition is not met. So we add the required files here. else ifeq (WNT,$(OS)) postprocess_FILES_main += \ $(postprocess_MOD)/org/openoffice/Inet-wnt.xcu \