Blame SOURCES/eclipse-ignore-version-when-calculating-home.patch

c90b3b
diff --git a/rt.equinox.framework/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java b/rt.equinox.framework/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
c90b3b
index 144571914..7e99bc880 100644
c90b3b
--- a/rt.equinox.framework/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
c90b3b
+++ b/rt.equinox.framework/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
c90b3b
@@ -1330,7 +1330,7 @@ public class Main {
d433ea
 				String appVersion = props.getProperty(PRODUCT_SITE_VERSION);
d433ea
 				if (appVersion == null || appVersion.trim().length() == 0)
d433ea
 					appVersion = ""; //$NON-NLS-1$
d433ea
-				appName += File.separator + appId + "_" + appVersion + "_" + installDirHash; //$NON-NLS-1$ //$NON-NLS-2$
c90b3b
+				appName += File.separator + appId + "_" + installDirHash; //$NON-NLS-1$
d433ea
 			} catch (IOException e) {
c90b3b
 				// Do nothing if we get an exception.  We will default to a standard location
d433ea
 				// in the user's home dir.
c90b3b
diff --git a/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/location/EquinoxLocations.java b/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/location/EquinoxLocations.java
c90b3b
index 0c13ace6f..d92d4fc45 100755
c90b3b
--- a/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/location/EquinoxLocations.java
c90b3b
+++ b/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/location/EquinoxLocations.java
c90b3b
@@ -308,7 +308,7 @@ public class EquinoxLocations {
d433ea
 				String appVersion = props.getProperty(PRODUCT_SITE_VERSION);
d433ea
 				if (appVersion == null || appVersion.trim().length() == 0)
d433ea
 					appVersion = ""; //$NON-NLS-1$
d433ea
-				appName += File.separator + appId + "_" + appVersion + "_" + installDirHash; //$NON-NLS-1$ //$NON-NLS-2$
c90b3b
+				appName += File.separator + appId + "_" + installDirHash; //$NON-NLS-1$
d433ea
 			} catch (IOException e) {
c90b3b
 				// Do nothing if we get an exception.  We will default to a standard location
d433ea
 				// in the user's home dir.