Fixed a problem for finding MIPS 64 bit libraries. Was seaching for

LD_LIBRARYN32_PATH instead of LD_LIBRARY64_PATH
This commit is contained in:
Don BURNS
2002-03-14 20:29:05 +00:00
parent c49c62ee15
commit 8b15a1f835

View File

@@ -255,7 +255,7 @@ char *osgDB::findDSO( const char *name )
#elif (_MIPS_SIM == _MIPS_SIM_ABI64)
if( !(ptr = getenv( "LD_LIBRARYN32_PATH" )))
if( !(ptr = getenv( "LD_LIBRARY64_PATH" )))
ptr = getenv( "LD_LIBRARY_PATH" );
if( ptr )