|
From: <ha...@us...> - 2008-05-12 19:18:17
|
Revision: 2007
http://cogkit.svn.sourceforge.net/cogkit/?rev=2007&view=rev
Author: hategan
Date: 2008-05-12 12:17:59 -0700 (Mon, 12 May 2008)
Log Message:
-----------
pre-defined classpath comes after our classpath
Modified Paths:
--------------
trunk/current/src/cog/etc/unix/example-launcher-template
trunk/current/src/cog/etc/unix/launcher-template
Modified: trunk/current/src/cog/etc/unix/example-launcher-template
===================================================================
--- trunk/current/src/cog/etc/unix/example-launcher-template 2008-05-12 16:56:13 UTC (rev 2006)
+++ trunk/current/src/cog/etc/unix/example-launcher-template 2008-05-12 19:17:59 UTC (rev 2007)
@@ -47,10 +47,11 @@
OPTIONS="$OPTIONS -Djava.endorsed.dirs=$COG_INSTALL_PATH/lib/endorsed"
-LOCALCLASSPATH=$CLASSPATH$CPDELIM$COG_INSTALL_PATH/etc
+LOCALCLASSPATH=$COG_INSTALL_PATH/etc
for JAR in $COG_INSTALL_PATH/lib/*.jar; do
LOCALCLASSPATH="$LOCALCLASSPATH$CPDELIM$JAR"
done
+LOCALCLASSPATH=$LOCALCLASSPATH$CPDELIM$CLASSPATH
CMDLINE=`fixCommandLine "$@"`
Modified: trunk/current/src/cog/etc/unix/launcher-template
===================================================================
--- trunk/current/src/cog/etc/unix/launcher-template 2008-05-12 16:56:13 UTC (rev 2006)
+++ trunk/current/src/cog/etc/unix/launcher-template 2008-05-12 19:17:59 UTC (rev 2007)
@@ -49,10 +49,11 @@
OPTIONS="$OPTIONS -Djava.endorsed.dirs=$COG_INSTALL_PATH/lib/endorsed"
-LOCALCLASSPATH=$CLASSPATH$CPDELIM$COG_INSTALL_PATH/etc
+LOCALCLASSPATH=$COG_INSTALL_PATH/etc
for JAR in $COG_INSTALL_PATH/lib/*.jar; do
LOCALCLASSPATH="$LOCALCLASSPATH$CPDELIM$JAR"
done
+LOCALCLASSPATH=$LOCALCLASSPATH$CPDELIM$CLASSPATH
CMDLINE=`fixCommandLine "$@"`
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|