From 69287099bab9640465cb18ef4006252d05a33e5d Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Fri, 28 Sep 2007 19:50:40 +0000
Subject: [PATCH] Fix for issue 2035 (Use OpenDS specific environment variables to determine the JVM to be used.)
---
opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java b/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
index e51b652..573daab 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
@@ -1654,17 +1654,17 @@
/**
* Writes the java home that we are using for the setup in a file.
- * This way we can use this java home even if the user has not set JAVA_HOME
- * when running the different scripts.
+ * This way we can use this java home even if the user has not set
+ * OPENDS_JAVA_HOME when running the different scripts.
*
*/
- protected void writeJavaHome()
+ protected void writeOpenDSJavaHome()
{
try
{
// This isn't likely to happen, and it's not a serious problem even if
// it does.
- SetupUtils.writeSetJavaHome(getInstallationPath());
+ SetupUtils.writeSetOpenDSJavaHome(getInstallationPath());
} catch (Exception e) {}
}
--
Gitblit v1.10.0