From db1b030276d20cc2e0c73a2e9c58412ec855a949 Mon Sep 17 00:00:00 2001 From: orbiter Date: Tue, 15 Sep 2009 17:29:18 +0000 Subject: [PATCH] fixed class path in startup scripts; omitting old classes path; all classes are now in lib/yacycore.jar git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6318 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- build.xml | 2 -- startYACY.bat | 2 +- startYACY.sh | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/build.xml b/build.xml index c25f04aab..252e2f9e1 100644 --- a/build.xml +++ b/build.xml @@ -212,7 +212,6 @@ @@ -222,7 +221,6 @@ diff --git a/startYACY.bat b/startYACY.bat index 68b9bac69..bebad0c8e 100644 --- a/startYACY.bat +++ b/startYACY.bat @@ -8,7 +8,7 @@ echo . >DATA\yacy.noconsole If %1.==CPGEN. GoTo :CPGEN Rem Generating the proper classpath unsing loops and labels -Set CLASSPATH=classes;htroot +Set CLASSPATH=htroot For %%X in (lib/*.jar) Do Call %0 CPGEN lib\%%X REM Please change the "javastart" settings in the web-interface "Basic Configuration" -> "Advanced" diff --git a/startYACY.sh b/startYACY.sh index 97345431d..09b427885 100755 --- a/startYACY.sh +++ b/startYACY.sh @@ -169,7 +169,7 @@ fi # generating the proper classpath CLASSPATH="" for N in lib/*.jar; do CLASSPATH="$CLASSPATH$N:"; done -CLASSPATH="classes:.:htroot:$CLASSPATH" +CLASSPATH=".:htroot:$CLASSPATH" cmdline="$JAVA $JAVA_ARGS -Djava.awt.headless=true -classpath $CLASSPATH yacy"; if [ $DEBUG -eq 1 ] #debug