diff options
| author | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2009-09-15 17:29:18 +0000 |
|---|---|---|
| committer | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2009-09-15 17:29:18 +0000 |
| commit | db1b030276d20cc2e0c73a2e9c58412ec855a949 (patch) | |
| tree | f31427c2ac6e1865a9b4458b970b099b51546809 | |
| parent | 033554dc1278b177c7849e278d17bae5c2e49be8 (diff) | |
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
| -rw-r--r-- | build.xml | 2 | ||||
| -rw-r--r-- | startYACY.bat | 2 | ||||
| -rwxr-xr-x | startYACY.sh | 2 |
3 files changed, 2 insertions, 4 deletions
@@ -212,7 +212,6 @@ <!-- compile the core sources --> <javac srcdir="${src}/" destdir="${build}" excludes="de/anomic/yacy/yacyBuildProperties.java" - debug="true" debuglevel="lines,vars,source" source="${javacSource}" target="${javacTarget}"> <classpath refid="project.class.path" /> <compilerarg value="-Xlint"/> @@ -222,7 +221,6 @@ <javac srcdir="${htroot}/" excludes="processing/**" classpathref="project.class.path" - debug="true" debuglevel="lines,vars,source" source="${javacSource}" target="${javacTarget}"> <compilerarg value="-Xlint"/> </javac> 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 |
