From 3dfb061cbafd3a97c9359f739942924a8ee525f1 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Wed, 02 Nov 2011 12:07:15 +0000
Subject: [PATCH] Fix for OPENDJ-222 : Renamed environment variables to OPENDJ_... Updated scripts so that if OPENDJ_JAVA_HOME and OPENDJ_JAVA_ARGS are not defined, we look at the legacy OPENDS_... ones.
---
opends/resource/DynamicConstants.java.stubs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opends/resource/DynamicConstants.java.stubs b/opends/resource/DynamicConstants.java.stubs
index 1ae7209..ab46493 100644
--- a/opends/resource/DynamicConstants.java.stubs
+++ b/opends/resource/DynamicConstants.java.stubs
@@ -166,14 +166,14 @@
/**
* A string representation of the version number.
*/
- public static String OPENDS_NUMBER_STRING =
+ public static String OPENDJ_NUMBER_STRING =
"${VERSION_NUMBER_STRING}";
/**
* A string representation of the release version.
*/
public static String RELEASE_VERSION_STRING =
- OPENDS_NUMBER_STRING;
+ OPENDJ_NUMBER_STRING;
/**
@@ -298,7 +298,7 @@
try{
RELEASE_VERSION_STRING = VERSION_NUMBER_STRING
+ " (OpenDJ version = "
- + OPENDS_NUMBER_STRING + ")" ;
+ + OPENDJ_NUMBER_STRING + ")" ;
}
catch (Exception ex) {}
} catch (Exception ex) {
--
Gitblit v1.10.0