postprocess/CustomTarget_registry.mk | 4 ++++ 1 file changed, 4 insertions(+)
New commits: commit b11f6006084b3a2587ba60fc29fdfb1976c9181b Author: Gökay Şatır <gokaysa...@collabora.com> AuthorDate: Tue Jan 7 12:48:00 2025 +0300 Commit: Andras Timar <andras.ti...@collabora.com> CommitDate: Tue Jan 7 23:02:29 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. Signed-off-by: Gökay Şatır <gokaysa...@collabora.com> Change-Id: I4a8425d17a5d95b03a176153506f29a3f393c173 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/179873 Reviewed-by: Andras Timar <andras.ti...@collabora.com> Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> (cherry picked from commit b0288101b8aa6c09975bc73577c0fadf62f36cf7) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/179919 Tested-by: Andras Timar <andras.ti...@collabora.com> diff --git a/postprocess/CustomTarget_registry.mk b/postprocess/CustomTarget_registry.mk index 3a45ac47a53a..219ba2c9eb0a 100644 --- a/postprocess/CustomTarget_registry.mk +++ b/postprocess/CustomTarget_registry.mk @@ -290,6 +290,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 \