Issue 8110

Summary: set_soenv.(in/1) uses LD_LIBRARY_PATH, should be LD_LIBRARYN32_PATH
Product: porting Reporter: nickb
Component: codeAssignee: foskey
Status: CLOSED FIXED QA Contact: issues@porting <issues>
Severity: Trivial    
Priority: P3 CC: issues
Version: 643   
Target Milestone: ---   
Hardware: SGI   
OS: IRIX   
Issue Type: DEFECT Latest Confirmation in: ---
Developer Difficulty: ---
Issue Depends on:    
Issue Blocks: 1209    
Attachments:
Description Flags
config_office/set_soenv.in - Use LD_LIBRARYN32_PATH on IRIX none

Description nickb 2002-10-07 06:25:08 UTC
In set_soenv.in (in SRX643) and set_soenv.1 (in OOO_STABLE_1), LD_LIBRARY_PATH is 
used. eg:
if ( $platform eq "$Macosx" )
{  ToFile( "DYLD_LIBRARY_PATH", $LD_LIBRARY_PATH,   "e" );
}
else
{  ToFile( "LD_LIBRARY_PATH",   $LD_LIBRARY_PATH,   "e" );
}


Should be:
if ( $platform eq "$Macosx" )
{  ToFile( "DYLD_LIBRARY_PATH", $LD_LIBRARY_PATH,   "e" );
}
else if ( $platform eq "$Irix" || $platform eq "$Irix64 ) 
{  ToFile( "LD_LIBRARYN32_PATH",   $LD_LIBRARY_PATH,   "e" );
}
else
{  ToFile( "LD_LIBRARY_PATH",   $LD_LIBRARY_PATH,   "e" );
}
Comment 1 nickb 2002-10-07 08:26:35 UTC
Created attachment 3073 [details]
config_office/set_soenv.in - Use LD_LIBRARYN32_PATH on IRIX
Comment 2 nickb 2002-10-31 00:21:17 UTC
Confirming Issue.
Comment 3 foskey 2002-11-14 13:25:04 UTC
In testing on OO643C,  will apply after build.
Comment 4 foskey 2002-11-14 13:25:57 UTC
reassigning.
Comment 5 foskey 2002-11-28 13:21:41 UTC
Applied patch to OO643C
Comment 6 foskey 2002-11-28 13:31:15 UTC
resolved
Comment 7 foskey 2003-03-17 00:10:16 UTC
This is currently on the porting branch.  verifying.
Comment 8 foskey 2003-03-17 00:21:31 UTC
closing issue.