Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-02-24 14:59:23 +0000
committerThomas Watson2014-02-24 14:59:23 +0000
commit34dbbd148efba5b5a398ffbd1848e38aae829709 (patch)
tree3af103d4aec6072240a1bb4dd26110f602b71cab
parent10d59fd586440c09b9f0ab7af79c3650c81a8cfa (diff)
downloadrt.equinox.framework-34dbbd148efba5b5a398ffbd1848e38aae829709.tar.gz
rt.equinox.framework-34dbbd148efba5b5a398ffbd1848e38aae829709.tar.xz
rt.equinox.framework-34dbbd148efba5b5a398ffbd1848e38aae829709.zip
Bug 426189 - osgi.baseConfiguration.area and -configuration does not resolve using a relative pathI20140225-0800
-rw-r--r--bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
index f55835c14..8a299c468 100644
--- a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
+++ b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
@@ -1775,6 +1775,7 @@ public class Main {
URL baseConfigurationLocation = null;
Properties baseConfiguration = null;
if (System.getProperty(PROP_CONFIG_AREA) == null) {
+ ensureAbsolute(PROP_BASE_CONFIG_AREA);
String baseLocation = System.getProperty(PROP_BASE_CONFIG_AREA);
if (baseLocation != null)
// here the base config cannot have any symbolic (e..g, @xxx) entries. It must just

Back to the top