~ttx/tomcat6/lucid-sru

« back to all changes in this revision

Viewing changes to bin/setclasspath.bat

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Claude, Ludovic Claude, Jason Brittain
  • Date: 2010-02-09 23:06:51 UTC
  • mfrom: (2.2.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100209230651-qiv9397g7txhrh99
Tags: 6.0.24-1
[ Ludovic Claude ]
* New upstream version
* Update the POM files for the new version of Tomcat
* Bump up Standards-Version to 3.8.4
* Refresh patches deploy-webapps-build-xml.patch and var_loaders.patch
* Remove patch fix_context_name.patch as it has been applied upstream
* Fix the installation of servlet-api-2.5.jar: the jar
  goes to /usr/share/java as in older versions (6.0.20-2)
  and links to the jar are added to /usr/share/maven-repo
* Moved NEWS.Debian into README.Debian
* Add a link from /usr/share/doc/tomcat6-common/README.Debian to
  /usr/share/doc/tomcat6/README.Debian to include a minimum of
  documentation in the tomcat6 package and add some useful notes. 
  (Closes: #563937, #563939)
* Remove poms from the Debian packaging, use upstream pom files

[ Jason Brittain ]
* Fixed a bug in the init script: When a start fails, the PID file was
  being left in place.  Now the init script makes sure it is deleted.
* Fixed a packaging bug that results in the ROOT webapp not being properly
  installed after an uninstall, then a reinstall.
* control: Corrected a couple of comments (no functional change).

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
rem ---------------------------------------------------------------------------
18
18
rem Set CLASSPATH and Java options
19
19
rem
20
 
rem $Id: setclasspath.bat 730396 2008-12-31 13:49:30Z markt $
 
20
rem $Id: setclasspath.bat 795037 2009-07-17 10:52:16Z markt $
21
21
rem ---------------------------------------------------------------------------
22
22
 
23
23
rem Make sure prerequisite environment variables are set
67
67
set JAVA_ENDORSED_DIRS=%BASEDIR%\endorsed
68
68
:gotEndorseddir
69
69
 
70
 
rem Set standard CLASSPATH
71
 
rem Note that there are no quotes as we do not want to introduce random
72
 
rem quotes into the CLASSPATH
73
 
if not exist "%JAVA_HOME%\lib\tools.jar" goto noJavac
74
 
set CLASSPATH=%JAVA_HOME%\lib\tools.jar
75
 
:noJavac
76
 
 
77
70
rem Set standard command for invoking Java.
78
71
rem Note that NT requires a window name argument when using start.
79
72
rem Also note the quoting as JAVA_HOME may contain spaces.
80
73
set _RUNJAVA="%JRE_HOME%\bin\java"
81
 
set _RUNJAVAW="%JRE_HOME%\bin\javaw"
82
74
set _RUNJDB="%JAVA_HOME%\bin\jdb"
83
 
set _RUNJAVAC="%JAVA_HOME%\bin\javac"
84
75
 
85
76
goto end
86
77
 
88
79
exit /b 1
89
80
 
90
81
:end
 
82
exit /b 0