From 0b925e1446910f63db6589a469c0cf9d3482bc0f Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Sat, 14 Oct 2006 00:50:40 +0000
Subject: [PATCH] Move the ConfigFileHandler from the config package to the extensions package. This is more in-line with the rest of the code conventions that we use, and it makes it easier to include the config package in what we consider to be our public API.
---
opends/resource/setup.bat | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/resource/setup.bat b/opends/resource/setup.bat
index 8bc6272..710f470 100644
--- a/opends/resource/setup.bat
+++ b/opends/resource/setup.bat
@@ -45,11 +45,11 @@
:setClassPath
-FOR %%x in (%DIR_HOME%\lib\*.jar) DO call "%DIR_HOME%\bin\setcp.bat" %%x
+FOR %%x in ("%DIR_HOME%\lib\*.jar") DO call "%DIR_HOME%\bin\setcp.bat" %%x
cd %DIR_HOME%
-%JAVA_BIN% %JAVA_ARGS% -classpath "%CLASSPATH%" org.opends.server.tools.InstallDS --configClass org.opends.server.config.ConfigFileHandler --configFile %DIR_HOME%\config\config.ldif -P setup.bat %*
+%JAVA_BIN% %JAVA_ARGS% -classpath "%CLASSPATH%" org.opends.server.tools.InstallDS --configClass org.opends.server.extensions.ConfigFileHandler --configFile "%DIR_HOME%\config\config.ldif" -P setup.bat %*
:end
--
Gitblit v1.10.0