bd4051
From 7e9bed1ca10901a3cf28775d9563570e94e2280b Mon Sep 17 00:00:00 2001
bd4051
From: Mat Booth <mat.booth@redhat.com>
bd4051
Date: Mon, 9 Sep 2019 12:42:10 +0100
bd4051
Subject: [PATCH] Distro jetty.home
bd4051
bd4051
---
bd4051
 .../org/eclipse/jetty/start/config/CommandLineConfigSource.java | 2 ++
bd4051
 1 file changed, 2 insertions(+)
bd4051
bd4051
diff --git a/jetty-start/src/main/java/org/eclipse/jetty/start/config/CommandLineConfigSource.java b/jetty-start/src/main/java/org/eclipse/jetty/start/config/CommandLineConfigSource.java
bd4051
index 792413e..5e5cab9 100644
bd4051
--- a/jetty-start/src/main/java/org/eclipse/jetty/start/config/CommandLineConfigSource.java
bd4051
+++ b/jetty-start/src/main/java/org/eclipse/jetty/start/config/CommandLineConfigSource.java
bd4051
@@ -120,6 +120,8 @@ public class CommandLineConfigSource implements ConfigSource
bd4051
                 try
bd4051
                 {
bd4051
                     Path home = new File(new URI(m.group(1))).getParentFile().toPath();
bd4051
+                    if (home.endsWith("/usr/share/java/jetty"))
bd4051
+                        home = new File(home.toString().replaceAll("java/jetty$", "jetty")).toPath();
bd4051
                     setProperty(BaseHome.JETTY_HOME, home.toString(), ORIGIN_INTERNAL_FALLBACK);
bd4051
                     return home;
bd4051
                 }
bd4051
-- 
bd4051
2.20.1
bd4051