From b3e295c8f66986d23b1cdd5d60eaed2b1edf135d Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 8 Nov 2023 10:47:08 -0600 Subject: [PATCH] Fix dangling link to jaxb-api.jar The CMake script has been updated to use more specific paths to find the proper location of jaxb-api.jar on platforms that do not provide xmvn-resolve. Resolves: https://issues.redhat.com/browse/RHCS-4602 --- base/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base/CMakeLists.txt b/base/CMakeLists.txt index d4b1ccd4900..55b6b377c0b 100644 --- a/base/CMakeLists.txt +++ b/base/CMakeLists.txt @@ -170,6 +170,8 @@ else() NAMES jaxb-api.jar PATHS + /usr/share/java/jaxb-api4 + /usr/share/java/jaxb-api /usr/share/java ) endif(XMVN_RESOLVE)