Issue 8110 - set_soenv.(in/1) uses LD_LIBRARY_PATH, should be LD_LIBRARYN32_PATH
Summary: set_soenv.(in/1) uses LD_LIBRARY_PATH, should be LD_LIBRARYN32_PATH
Status: CLOSED FIXED
Alias: None
Product: porting
Classification: Code
Component: code (show other issues)
Version: 643
Hardware: SGI IRIX
: P3 Trivial (vote)
Target Milestone: ---
Assignee: foskey
QA Contact: issues@porting
URL:
Keywords:
Depends on:
Blocks: 1209
  Show dependency tree
 
Reported: 2002-10-07 06:25 UTC by nickb
Modified: 2003-03-17 00:21 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments
config_office/set_soenv.in - Use LD_LIBRARYN32_PATH on IRIX (875 bytes, patch)
2002-10-07 08:26 UTC, nickb
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this issue.
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.