This is an automated email from the ASF dual-hosted git repository. jimjag pushed a commit to branch AOO42X in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit eef634b35e0b9871402e9d725bdf1afc463b4d20 Author: Jim Jagielski <[email protected]> AuthorDate: Sun Aug 2 06:02:52 2026 -0400 Prevent circular builds on macOS (cherry picked from commit f86816bd5b916bc4dec55db6f5796b92e2107e01) --- main/jvmfwk/Module_jvmfwk.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/jvmfwk/Module_jvmfwk.mk b/main/jvmfwk/Module_jvmfwk.mk index 8ab2412ab6..ab2f45c5c0 100644 --- a/main/jvmfwk/Module_jvmfwk.mk +++ b/main/jvmfwk/Module_jvmfwk.mk @@ -34,10 +34,12 @@ $(eval $(call gb_Module_add_targets,jvmfwk,\ Package_sunjavapluginrc \ )) +ifneq ($(OS),MACOSX) ifeq ($(GUI),UNX) $(eval $(call gb_Module_add_targets,jvmfwk,\ Executable_javaldx \ )) endif +endif # vim: set noet sw=4 ts=4:
