You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by ni...@apache.org on 2003/08/10 01:21:45 UTC

cvs commit: jakarta-gump .cvsignore gen.bat

nickchalko    2003/08/09 16:21:45

  Modified:    .        .cvsignore gen.bat
  Log:
  Added JENNY_OPT for passing options to the JVM for jenny.  This can be set in LOCAL-ENV.bat
  PR:
  Obtained from:
  Submitted by:	
  Reviewed by:	
  CVS: ----------------------------------------------------------------------
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  Changes    Path
  1.14      +1 -0      jakarta-gump/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/.cvsignore,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- .cvsignore	8 Aug 2003 07:13:36 -0000	1.13
  +++ .cvsignore	9 Aug 2003 23:21:45 -0000	1.14
  @@ -12,3 +12,4 @@
   velocity.log
   build
   *~
  +LOCAL-ENV.bat
  
  
  
  1.30      +7 -2      jakarta-gump/gen.bat
  
  Index: gen.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/gen.bat,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- gen.bat	2 Apr 2003 20:22:35 -0000	1.29
  +++ gen.bat	9 Aug 2003 23:21:45 -0000	1.30
  @@ -5,6 +5,9 @@
   @REM 
   @REM SET CLASSPATH=%JAXP%\crimson.jar;%JAXP%\jaxp.jar;%JAXP%\xalan.jar;%CLASSPATH%
   
  +@REM set local variables in LOCAL-ENV.bat
  +if exist LOCAL-ENV.bat call LOCAL-ENV.bat
  +
   set OS_stylesheet=winxp
   ver | find "Windows 2000" >nul
   if errorlevel 1 goto xalan
  @@ -23,6 +26,8 @@
   IF "%HOME%"=="" SET HOME=%HOMEDRIVE%%HOMEPATH%
   IF "%HOME%"=="" SET HOME=C:\
   
  +
  +
   if exist work rmdir /s /q work
   mkdir work
   if not exist cache mkdir cache
  @@ -37,7 +42,7 @@
   jar cf jenny.jar -C classes .
   if errorlevel 1 goto fail
   echo.
  -java "-Duser.home=%HOME%" -classpath "jenny.jar;%CLASSPATH%" Jenny %SOURCE%
  +java "-Duser.home=%HOME%"  %JENNY_OPT% -classpath "jenny.jar;%CLASSPATH%" Jenny %SOURCE%
   if not errorlevel 0 goto fail
   
   @REM ********************************************************************
  @@ -136,6 +141,6 @@
   echo.
   echo Checking for local dependencies in %SOURCE%
   echo.
  -java "-Duser.home=%HOME%" -classpath "jenny.jar;%CLASSPATH%" LocalCheck %SOURCE%
  +java "-Duser.home=%HOME%" %JENNY_OPT%  -classpath "jenny.jar;%CLASSPATH%" LocalCheck %SOURCE%
   
   ENDLOCAL