I have a suggestion for build-turbine.bat (which
can be applied to build-turbine.sh too). I would
like to change these lines:

  set _JSDK=%JSDK%
  set JSDK=C:\classes\jsdk2.0\lib\jsdk.jar
  [blah...]

to these lines:

  set _JSDK=%JSDK%
  if "%_JSDK" == "" goto jsdk_def
  goto jsdk_goon
 
  :jsdk_def
  set JSDK=C:\classes\jsdk2.0\lib\jsdk.jar
  
  :jsdk_goon
  [blah...]


This way, I can just set the proper path to servlet.jar
(I use Tomcat's) using the JSDK environment variable,
and don't have to edit the bat file at all. Comments?

Does this require two (or is it three?) +1s to pass?


-- 
Gonzalo A. Diethelm
[EMAIL PROTECTED]


------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to