Sorry, IIRC is an acronym for "If I recall correctly."  It's not a variable
name.

The exact line of bin/jrun should be 146 and it reads:

LD_LIBRARY_PATH=`echo LD_LIBRARY_PATH | sed -e 's/;/:/g'

The second LD_LIBRARY_PATH ought to be preceded with a '$' so it reads:

LD_LIBRARY_PATH=`echo $LD_LIBRARY_PATH | sed -e 's/;/:/g'

Scott Stirling
Allaire Corporation
http://www.allaire.com/developer/jrunreferencedesk/

> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, August 22, 2000 12:00 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Can't load .sl file using JRun 3.0
> 
> 
> 
> The build that I use does not have IIRCC variable in jrun 
> shell script under
> $JRUN_HOME/bin.
> But I did find a typo for the $SHLIB_PATH variable ( changed 
> $SH_LIB_PATH to
> $SHLIB_PATH ... line# 147).
> I restarted the JRun default server, but it did me no good.
> 
> As I see the shell script, LD_LIBRARY_PATH part of it is not 
> accessed for
> HP-UX. 
> 
> Am i still missing something ???Please find the corrected 
> excerpt from my
> jrun shell script for reference below.
> 
> thanks !!
> --niraj
> 
> 
>     # Configure shared library path for JNI work
>     if [ `uname -s` = "HP-UX" ]; then
>               SHLIB_PATH=`$JRUN_DIR/bin/getprop java.jnipath $LPROP
> $GPROP`
>         SHLIB_PATH=`echo $SHLIB_PATH | sed -e 's/;/:/g'`
>               export SHLIB_PATH
>     else
>               LD_LIBRARY_PATH=`$JRUN_DIR/bin/getprop 
> java.jnipath $LPROP
> $GPROP`
>               LD_LIBRARY_PATH=`echo $LD_LIBRARY_PATH | sed -e 
> 's/;/:/g'`
>               export LD_LIBRARY_PATH
>     fi
------------------------------------------------------------------------------
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the 
body.

Reply via email to